-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
31 lines (27 loc) · 830 Bytes
/
README
File metadata and controls
31 lines (27 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
POcppO-and-POCS
===============
Plain Old c++ Object and Plain Old C Structure header file builder
Sometimes I need to build headers for some simple objects (or structs).
These programs are for build the skeletons.
Skeletons in .hpp files includes
- simple get-set methods
- constructors ( by properties, by copy, from CSV)
- serializer (from CSV)
- destructor
- a show() method for debug
Skeletons in .h files includes
- simple get-set functions
- constructors ( by properties, by copy, from CSV)
- serializer (from CSV)
- destructor
- a show() function for debug
to compile:
gcc POCS.c -o POCS
g++ POcppO.cpp -o POcppO
(I know: it pops some warnings - just ignore them, they are for char* instead of string class)
USAGE:
POcppO INPUT_FILE_NAME
or
POCS INPUT_FILE_NAME
THAT's all. Hope you enjoy it.
(sry for my bad english)