summaryrefslogtreecommitdiff
path: root/lib/main.cpp
blob: 7b3da269f6956d7f82ed624ba8ca14d97e333ece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

namespace libcamera {

using std::cout;
using std::endl;

void init_lib(void)
{
	cout << "Lib Camera Init" << endl;
}

};