1
2
3
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 } }