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