summaryrefslogtreecommitdiff
path: root/src/libcamera/main.cpp
blob: 7ed37dfcfd5b3c9bc15486adb0c9d855d3a4ec70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2018, Google Inc.
 *
 * main.cpp - libcamera main class
 */

#include <libcamera/libcamera.h>

#include "log.h"

namespace libcamera {

void libcamera::init_lib(void)
{
	LOG(Info) << "Lib Camera Init";
}

};