00001
00002
00003
00004
00005 #include <so_4/h/std_incl.hpp>
00006
00007 #include "c1i.hpp"
00008
00009
00010 SOL4_CLASS_START( c1i_t )
00011
00012 SOL4_MSG_START( msg_request, c1i_t::msg_request )
00013 SOL4_MSG_FINISH()
00014
00015 SOL4_MSG_START( msg_reply, c1i_t::msg_reply )
00016 SOL4_MSG_FINISH()
00017
00018 SOL4_CLASS_FINISH()
00019
00020
00021 c1i_t::c1i_t()
00022 :
00023
00024 base_type_t( agent_name() )
00025 {
00026 }
00027
00028 c1i_t::~c1i_t()
00029 {
00030 }
00031
00032 const std::string &
00033 c1i_t::agent_name()
00034 {
00035
00036 static std::string name( "a_c1i" );
00037 return name;
00038 }
00039
00040 const std::string &
00041 c1i_t::agent_type()
00042 {
00043
00044
00045 static std::string type_name( "c1i_t" );
00046 return type_name;
00047 }