#include <iostream>

namespace libcamera {

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

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

};