main.cpp
#include <iostream>
class msg_hello
:
{
public:
std::string m_message;
};
class a_hello_t
:
{
public:
:
base_type_t( env ),
m_self_mbox( so_environment().create_local_mbox() )
{}
virtual ~a_hello_t()
{}
virtual void
virtual void
void
evt_hello(
private:
};
void
a_hello_t::so_define_agent()
{
so_subscribe( m_self_mbox )
.event( &a_hello_t::evt_hello );
}
void
a_hello_t::so_evt_start()
{
std::unique_ptr< msg_hello > msg( new msg_hello );
msg->m_message = "Hello, world! This is SObjectizer v.5.";
m_self_mbox->deliver_message( msg );
}
void
a_hello_t::evt_hello(
{
std::cout << msg->m_message << std::endl;
so_environment().stop();
}
void
{
new a_hello_t( env ) ) );
}
int
main( int, char ** )
{
try
{
}
catch( const std::exception & ex )
{
std::cerr << "Error: " << ex.what() << std::endl;
return 1;
}
return 0;
}