gencpp/project/auxillary/builder.hpp

16 lines
206 B
C++
Raw Normal View History

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