26 lines
369 B
C++
26 lines
369 B
C++
#ifndef _TOOLS_H_
|
|
#define _TOOLS_H_
|
|
|
|
#include <fbxsdk.h>
|
|
#include <tuple>
|
|
#include <vector>
|
|
#include <sqlite3.h>
|
|
#include <cstring>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
typedef struct {
|
|
char* fbx_file;
|
|
char* out_dir;
|
|
|
|
sqlite3* db;
|
|
} FttContext;
|
|
|
|
using V3 = std::tuple<double, double, double>;
|
|
|
|
FttContext ctx_from_const(const FttContext* ctx);
|
|
|
|
#endif
|
|
|