00001 #include "OSDLWorldObject.h" 00002 00003 using std::string ; 00004 00005 00006 using namespace OSDL::Engine ; 00007 00008 00009 00010 00011 WorldObject::WorldObject() throw() : Ceylan::Model() 00012 { 00013 00014 } 00015 00016 00017 WorldObject::~WorldObject() throw() 00018 { 00019 00020 } 00021 00022 00023 const string WorldObject::toString( Ceylan::VerbosityLevels level ) 00024 const throw() 00025 { 00026 return "World object. " + Ceylan::Model::toString( level ) ; 00027 } 00028