#ifndef PROXY_TUNNEL_SETTINGS_CPP #define PROXY_TUNNEL_SETTINGS_CPP #include #include using namespace std; class PyCodeConfig{ public: const vector code; public: PyCodeConfig(vector pycode): code(pycode){} PyCodeConfig(): code(vector()){} ~PyCodeConfig(){} }; shared_ptr config; #endif // PROXY_TUNNEL_SETTINGS_CPP