1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #include <sngxml/xpath/InitDone.hpp>
 7 #include <sngxml/xpath/XPathFunction.hpp>
 8 #include <sngxml/xpath/XPathDebug.hpp>
 9 
10 namespace sngxml { namespace xpath {
11 
12 void Init()
13 {
14     InitFunction();
15     InitDebug();
16 }
17 
18 void Done()
19 {
20     DoneDebug();
21     DoneFunction();
22 }
23 
24 } } // namespace sngxml::xpath