diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-03-26 15:33:06 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-03-26 15:33:06 -0400 |
commit | 0e6355329f241a3e3c8b38cb4146fda4470e6ed0 (patch) | |
tree | df5853ba6df148e8eeb0082d090dfbcd9f94f651 /generator/generator.h | |
parent | 09acb46a9c32257b0003eb152d32c15b43b95dfe (diff) | |
download | cadence-0e6355329f241a3e3c8b38cb4146fda4470e6ed0.tar.gz cadence-0e6355329f241a3e3c8b38cb4146fda4470e6ed0.tar.bz2 cadence-0e6355329f241a3e3c8b38cb4146fda4470e6ed0.zip |
Whitespace changes
Diffstat (limited to 'generator/generator.h')
-rw-r--r-- | generator/generator.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/generator/generator.h b/generator/generator.h index d911c61..dff8eeb 100644 --- a/generator/generator.h +++ b/generator/generator.h | |||
@@ -7,44 +7,44 @@ | |||
7 | 7 | ||
8 | namespace cadence { | 8 | namespace cadence { |
9 | namespace generator { | 9 | namespace generator { |
10 | 10 | ||
11 | class generator { | 11 | class generator { |
12 | public: | 12 | public: |
13 | 13 | ||
14 | // Constructor | 14 | // Constructor |
15 | 15 | ||
16 | generator( | 16 | generator( |
17 | std::string inputpath, | 17 | std::string inputpath, |
18 | std::string outputpath); | 18 | std::string outputpath); |
19 | 19 | ||
20 | // Action | 20 | // Action |
21 | 21 | ||
22 | void run(); | 22 | void run(); |
23 | 23 | ||
24 | // Subroutines | 24 | // Subroutines |
25 | 25 | ||
26 | void writeSchema(); | 26 | void writeSchema(); |
27 | 27 | ||
28 | void scanDirectories(); | 28 | void scanDirectories(); |
29 | 29 | ||
30 | void parseData(); | 30 | void parseData(); |
31 | 31 | ||
32 | private: | 32 | private: |
33 | 33 | ||
34 | // Input | 34 | // Input |
35 | 35 | ||
36 | std::string inputpath_; | 36 | std::string inputpath_; |
37 | 37 | ||
38 | // Output | 38 | // Output |
39 | 39 | ||
40 | database db_; | 40 | database db_; |
41 | 41 | ||
42 | // Cache | 42 | // Cache |
43 | 43 | ||
44 | std::list<std::string> datafiles_; | 44 | std::list<std::string> datafiles_; |
45 | 45 | ||
46 | }; | 46 | }; |
47 | 47 | ||
48 | }; | 48 | }; |
49 | }; | 49 | }; |
50 | 50 | ||