summaryrefslogtreecommitdiff
path: root/lib/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/main.cpp')
-rw-r--r--lib/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/main.cpp b/lib/main.cpp
new file mode 100644
index 00000000..7b3da269
--- /dev/null
+++ b/lib/main.cpp
@@ -0,0 +1,13 @@
+#include <iostream>
+
+namespace libcamera {
+
+using std::cout;
+using std::endl;
+
+void init_lib(void)
+{
+ cout << "Lib Camera Init" << endl;
+}
+
+};