12 lines
202 B
C
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);
|
||
|
};
|