Add synthetic files

This commit is contained in:
John Zhao
2018-04-26 10:33:37 +08:00
parent 1fd44f7f0c
commit 8f10285773
5 changed files with 147 additions and 1 deletions

17
src/api/synthetic.cc Normal file
View File

@@ -0,0 +1,17 @@
#include "api/synthetic.h"
#include <glog/logging.h>
#include "api/api.h"
MYNTEYE_BEGIN_NAMESPACE
Synthetic::Synthetic(API *api) : api_(api) {
VLOG(2) << __func__;
}
Synthetic::~Synthetic() {
VLOG(2) << __func__;
}
MYNTEYE_END_NAMESPACE