Blame view

src/village_inc.h 204 Bytes
e8beee4d   Hu Chunming   实现jni接口
1
2
3
4
5
6
7
8
9
10
11
12
13
  #ifndef __VILLAGE_INC_H__
  #define __VILLAGE_INC_H__
  
  #include <string>
  
  struct VillageParam {
      int dev_id;
      std::string db_path;
      std::string model_path;
  };
  
  
  #endif          // __VILLAGE_INC_H__