Unit test improvements, add example programme
[ric-plt/xapp-frame-cpp.git] / src / xapp / xapp.hpp
index a3d5e97..83540ec 100644 (file)
@@ -47,6 +47,10 @@ class Xapp : public Messenger {
        private:
                std::string name;
 
+               // copy and assignment are PRIVATE because we cant "clone" the listen environment
+               Xapp( const Xapp& soi );
+               Xapp& operator=( const Xapp& soi );
+
        public:
                Xapp( char* listen_port, bool wait4rt );        // builder
                Xapp( );