diff options
-rw-r--r-- | include/libcamera/libcamera.h | 11 | ||||
-rw-r--r-- | lib/main.cpp | 7 | ||||
-rw-r--r-- | test/init.cpp | 7 |
3 files changed, 25 insertions, 0 deletions
diff --git a/include/libcamera/libcamera.h b/include/libcamera/libcamera.h index d5b34a2c..64857326 100644 --- a/include/libcamera/libcamera.h +++ b/include/libcamera/libcamera.h @@ -1,5 +1,16 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +/* + * Copyright (C) 2018, Google Inc. + * + * libcamera.h - libcamera public API + */ +#ifndef __LIBCAMERA_LIBCAMERA_H__ +#define __LIBCAMERA_LIBCAMERA_H__ + class libcamera { public: void init_lib(void); }; + +#endif /* __LIBCAMERA_LIBCAMERA_H__ */ diff --git a/lib/main.cpp b/lib/main.cpp index 37f1ccce..0059e0c9 100644 --- a/lib/main.cpp +++ b/lib/main.cpp @@ -1,3 +1,10 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +/* + * Copyright (C) 2018, Google Inc. + * + * main.cpp - libcamera main class + */ + #include <iostream> #include <libcamera/libcamera.h> diff --git a/test/init.cpp b/test/init.cpp index 8c8ec9ad..97948b9c 100644 --- a/test/init.cpp +++ b/test/init.cpp @@ -1,3 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * Copyright (C) 2018, Google Inc. + * + * init.cpp - libcamera initialization test + */ + #include <libcamera/libcamera.h> int main(void) |