XNSim/XNServiceGenServer/XNServiceCompile.h

12 lines
202 B
C++

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