gencpp/project/file_processors/builder.hpp

12 lines
165 B
C++
Raw Normal View History

struct Builder
{
FileInfo File;
String Buffer;
void print( Code );
void print_fmt( char const* fmt, ... );
bool open( char const* path );
void write();
};