#ifdef POSITION /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Position.h" namespace morpheo { namespace behavioural { Entity * Position::set_entity (string name , string type , schema_t schema ) { Entity * entity = new Entity (name , type , schema ); _entity = entity; return entity; }; }; // end namespace behavioural }; // end namespace morpheo #endif