#include <iostream>
{
public:
{
}
{
so_5::send< std::string >( *this, "Hello, world! This is SObjectizer-5.");
}
private :
void evt_hello( const std::string & msg )
{
std::cout << msg << std::endl;
}
};
int main()
{
try
{
{
} );
}
catch( const std::exception & ex )
{
std::cerr << "Error: " << ex.what() << std::endl;
return 1;
}
return 0;
}