Add with api option
This commit is contained in:
15
src/api/api.cc
Normal file
15
src/api/api.cc
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "api/api.h"
|
||||
|
||||
#include <glog/logging.h>
|
||||
|
||||
MYNTEYE_BEGIN_NAMESPACE
|
||||
|
||||
API::API() {
|
||||
VLOG(2) << __func__;
|
||||
}
|
||||
|
||||
API::~API() {
|
||||
VLOG(2) << __func__;
|
||||
}
|
||||
|
||||
MYNTEYE_END_NAMESPACE
|
||||
17
src/api/api.h
Normal file
17
src/api/api.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef MYNTEYE_API_H_ // NOLINT
|
||||
#define MYNTEYE_API_H_
|
||||
#pragma once
|
||||
|
||||
#include "mynteye/mynteye.h"
|
||||
|
||||
MYNTEYE_BEGIN_NAMESPACE
|
||||
|
||||
class MYNTEYE_API API {
|
||||
public:
|
||||
API();
|
||||
~API();
|
||||
};
|
||||
|
||||
MYNTEYE_END_NAMESPACE
|
||||
|
||||
#endif // MYNTEYE_API_H_ NOLINT
|
||||
Reference in New Issue
Block a user