Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
cCmdXCompile.h
Go to the documentation of this file.
1 //
4 //
5 
6 #ifndef _INC_cCmdXCompile_H
7 #define _INC_cCmdXCompile_H
8 #ifndef NO_PRAGMA_ONCE
9 #pragma once
10 #endif
11 
12 #include "GrayX.h"
13 
14 #if defined(_WIN32) && defined(USE_DXX) // && ! defined(_WINDLL)
15 namespace GrayX
16 {
17  class cCmdXCompile : public GrayXCmd
18  {
21  bool m_bDecompile;
22  cStringF m_sPath;
23  public:
24  cCmdXCompile(cStringF sDir, bool bDecompile);
25  virtual ~cCmdXCompile();
26  virtual HRESULT DoCmd(const FILECHAR_t* pszArgs) override;
27  };
28 }
29 #endif
30 #endif
#define GrayXCmd(a, b, c)
Definition: GrayX.cpp:125
INT32 HRESULT
_WIN32 style error codes. INT32
Definition: SysTypes.h:465
Definition: GrayX.cpp:52
cStringT< FILECHAR_t > cStringF
A file name. checks USE_UNICODE_FN. related to cFilePath.
Definition: cFilePath.h:17
char FILECHAR_t
a UTF8 char in a file name. like TCHAR
Definition: FileName.h:22