XNSim/XNModelGenServer/XNModelCompile.h

12 lines
197 B
C++

#pragma once
#include <string>
class XNModelCompile
{
public:
XNModelCompile() = delete;
~XNModelCompile() = delete;
static int Compile(const std::string &srcPath, std::string &errorMsg);
};