1 // =================================
 2 // Copyright (c) 2020 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #include <sngcpp/ast/InitDone.hpp>
 7 #include <sngcpp/ast/Node.hpp>
 8 
 9 namespace sngcpp { namespace ast {
10 
11 void Init()
12 {
13     NodeInit();
14 }
15 
16 void Done()
17 {
18     NodeDone();
19 }
20 
21 } } // namespace sngcpp::ast