1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 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 } } // namespace sngcm::ast