1
2
3
4
5
6 #include <sngcm/ast/InitDone.hpp>
7 #include <sngcm/ast/Node.hpp>
8 #include <sngcm/ast/SystemFileIndex.hpp>
9
10 namespace sngcm { namespace ast {
11
12 void Init()
13 {
14 NodeInit();
15 SystemFileIndexInit();
16 }
17
18 void Done()
19 {
20 NodeDone();
21 }
22
23 } }