mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 11:04:52 -08:00
21 lines
283 B
C++
21 lines
283 B
C++
#ifdef GEN_INTELLISENSE_DIRECTIVES
|
|
# pragma once
|
|
# include "gen.hpp"
|
|
#endif
|
|
|
|
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();
|
|
};
|
|
|