mirror of
https://github.com/maxDcb/C2Core
synced 2026-06-08 15:48:01 +00:00
23 lines
186 B
C++
23 lines
186 B
C++
#include "ModuleCmd.hpp"
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
#elif _WIN32
|
|
|
|
#endif
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
ModuleCmd::ModuleCmd(const std::string& name)
|
|
{
|
|
m_name=name;
|
|
}
|
|
|
|
ModuleCmd::~ModuleCmd()
|
|
{
|
|
}
|
|
|