summaryrefslogtreecommitdiff
path: root/src/libcamera/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/main.cpp')
-rw-r--r--src/libcamera/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libcamera/main.cpp b/src/libcamera/main.cpp
new file mode 100644
index 00000000..0059e0c9
--- /dev/null
+++ b/src/libcamera/main.cpp
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+/*
+ * Copyright (C) 2018, Google Inc.
+ *
+ * main.cpp - libcamera main class
+ */
+
+#include <iostream>
+#include <libcamera/libcamera.h>
+
+using std::cout;
+using std::endl;
+
+void libcamera::init_lib(void)
+{
+ cout << "Lib Camera Init" << endl;
+}