| 5 | #include "server.h" |
| 6 | |
| 7 | class CConfig |
| 8 | { |
| 9 | public: |
| 10 | bool m_Verbose; |
| 11 | char m_aConfigFile[1024]; |
| 12 | char m_aWebDir[1024]; |
| 13 | char m_aTemplateFile[1024]; |
| 14 | char m_aJSONFile[1024]; |
| 15 | char m_aBindAddr[256]; |
| 16 | int m_Port; |
| 17 | |
| 18 | CConfig(); |
| 19 | }; |
| 20 | |
| 21 | class CMain |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected