1 | /* |
2 | * 1394-Based Digital Camera Control Library |
3 | * |
4 | * Written by |
5 | * Gord Peters <GordPeters@smarttech.com>, |
6 | * Chris Urmson <curmson@ri.cmu.edu> |
7 | * Damien Douxchamps <ddouxchamps@users.sf.net> |
8 | * Dan Dennedy <ddennedy@users.sf.net> |
9 | * David Moore <dcm@acm.org> |
10 | * ... and many ohters (see the AUTHORS file) |
11 | * |
12 | * Copyright (C) 2000-2001 SMART Technologies Inc. |
13 | * Copyright (C) 2001-2004 Universite catholique de Louvain |
14 | * Copyright (C) 2000 Carnegie Mellon University |
15 | * Copyright (C) 2006- Massachussets Institute of Technology |
16 | * Copyright (C) 2004- Nara Institute of Science and Technology |
17 | * All files are also Copyright (C) their respective author(s) |
18 | * |
19 | * This library is free software; you can redistribute it and/or |
20 | * modify it under the terms of the GNU Lesser General Public |
21 | * License as published by the Free Software Foundation; either |
22 | * version 2.1 of the License, or (at your option) any later version. |
23 | * |
24 | * This library is distributed in the hope that it will be useful, |
25 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
26 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
27 | * Lesser General Public License for more details. |
28 | * |
29 | * You should have received a copy of the GNU Lesser General Public |
30 | * License along with this library; if not, write to the Free Software |
31 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
32 | */ |
33 | |
34 | #ifndef __DC1394_H__ |
35 | #define __DC1394_H__ |
36 | |
37 | |
38 | /*! \file dc1394/dc1394.h |
39 | \brief Main include file, which include all others. |
40 | |
41 | More details soon |
42 | */ |
43 | |
44 | /* Include all public header files:*/ |
45 | #include <dc1394/types.h> |
46 | #include <dc1394/camera.h> |
47 | #include <dc1394/control.h> |
48 | #include <dc1394/capture.h> |
49 | #include <dc1394/conversions.h> |
50 | #include <dc1394/format7.h> |
51 | #include <dc1394/iso.h> |
52 | #include <dc1394/log.h> |
53 | #include <dc1394/register.h> |
54 | #include <dc1394/video.h> |
55 | #include <dc1394/utils.h> |
56 | |
57 | #endif |
58 | |