broker.h (473B)
1 // 2 // Created by marce on 22.09.2017. 3 // 4 5 #ifndef TUNNELDIGGER_BROKER_BROKER_H 6 #define TUNNELDIGGER_BROKER_BROKER_H 7 8 9 class broker { 10 public: 11 class TunnelManager { 12 public: 13 TunnelManager(const char * nspaceL); 14 int initialize(); 15 private: 16 //Namespace is a taken var name in C++ so I use nspace isntead 17 const char * nspace; 18 }; 19 }; 20 21 22 #endif //TUNNELDIGGER_BROKER_BROKER_H