summaryrefslogtreecommitdiff
path: root/lib/main.cpp
blob: 0059e0c9157187775a9c655f152d2d3033d4fa67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}