commandgenerator.cpp 225 B

1234567891011121314
  1. #include <fstream>
  2. #include "object.h"
  3. int main(int argc, char** argv)
  4. {
  5. std::ofstream fout("commandoutput.h");
  6. if (!fout)
  7. return 1;
  8. fout << "#define COMMANDOUTPUT_DEFINE\n";
  9. fout.close();
  10. return object();
  11. }