Exemplo n.º 1
0
		/// \brief starts the osc listener
    void run ()				{ 
        try {
            fListener->run(); 
        }
	catch (osc::Exception& e){
            
            if(fErrCallback != NULL)
                (*fErrCallback)(fArg);
        }        
	catch (std::runtime_error& err) {
            
            if(fErrCallback != NULL)
                (*fErrCallback)(fArg);
        }
        }
Exemplo n.º 2
0
		void stop ()			{ fListener->stop(); quit(); }
Exemplo n.º 3
0
		/// \brief starts the osc listener
		void run ()				{ fListener->run(); }