Skip to content
Snippets Groups Projects
Commit 2892dc41 authored by Francois Bleibel's avatar Francois Bleibel
Browse files

Added a new test (test_pool).

parent 6d0b4a00
No related branches found
No related tags found
No related merge requests found
...@@ -2,36 +2,30 @@ ...@@ -2,36 +2,30 @@
# Copyright # Copyright
# #
### test_shell ### tests
SET(EXECUTABLE_NAME test_shell) SET(tests
test_shell
ADD_DEFINITIONS(-DDEBUG=2) test_pool
test_depend)
ADD_EXECUTABLE(${EXECUTABLE_NAME}
test_shell.cpp) FOREACH(test_name ${tests})
SET(EXECUTABLE_NAME ${test_name})
INCLUDE_DIRECTORIES(
${CMAKE_CURRENT_SOURCE_DIR}/../include ADD_DEFINITIONS(-DDEBUG=2)
)
ADD_EXECUTABLE(${EXECUTABLE_NAME}
LINK_DIRECTORIES(${${PROJECT_NAME}_BINARY_DIR}/lib) ${test_name}.cpp)
TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME} INCLUDE_DIRECTORIES(
${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/../include
dl) )
LINK_DIRECTORIES(${${PROJECT_NAME}_BINARY_DIR}/lib)
### test_factory
# test currently disabled TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME}
#SET(EXECUTABLE_NAME test_factory) ${PROJECT_NAME}
dl)
#ADD_DEFINITIONS(-DDEBUG=2)
INSTALL(TARGETS ${test_name}
#ADD_EXECUTABLE(${EXECUTABLE_NAME} DESTINATION ${CMAKE_INSTALL_PREFIX}/bin/${PROJECT_NAME})
# test_factory.cpp) ENDFOREACH(test_name)
\ No newline at end of file
#INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
#link_directories(${LIBRARY_OUTPUT_PATH})
#TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME}
# ${PROJECT_NAME}
# dl)
\ No newline at end of file
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
* Copyright Projet JRL-JAPAN, Tsukuba, 2007
*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
* File: test_entity.cc
* Project: dynamicGraph
* Author: François Bleibel
*
* Version control
* ===============
*
* $Id$
*
* Description
* ============
*
*
* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* -------------------------------------------------------------------------- */
/* --- INCLUDES ------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
#include <string>
#include <iostream>
#include <cstdlib>
#include <dynamic-graph/factory.h>
#include <dynamic-graph/entity.h>
#include <dynamic-graph/debug.h>
#include <dynamic-graph/pool.h>
#include <memory>
using namespace std;
using namespace dynamicgraph;
class MyEntity
: public Entity
{
public:
MyEntity(const std::string& name);
public: /* --- ENTITY INHERITANCE --- */
static const std::string CLASS_NAME;
virtual void display( std::ostream& os ) const;
virtual const std::string& getClassName( void ) const { return CLASS_NAME; }
protected:
};
DYNAMICGRAPH_FACTORY_ENTITY_PLUGIN(MyEntity,"MyEntity");
MyEntity::MyEntity(const std::string& name)
: Entity(name){
}
void MyEntity::display(std::ostream& os ) const {
os << "Hello! My name is " << getName() << " !" << endl;
}
main() {
MyEntity myEntity("MyEntity");
cout << "-- Pool.list" << endl;
pool.commandLine("pool", "list", *auto_ptr<istringstream>(new istringstream("")), cout);
Entity& e = pool.getEntity("MyEntity");
cout << "-- Display" << endl;
e.display(cout);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment