Planned actions: changed planned_action_set to planned_action_manager

This commit is contained in:
Gabriel Morin 2010-06-01 02:29:49 +00:00
parent 871cef31da
commit d13077d3f7
2 changed files with 8 additions and 8 deletions

View File

@ -13,18 +13,18 @@
*/ */
/** /**
* @file planned_action_set.cpp * @file planned_action_manager.cpp
*/ */
#include "planned_action_set.hpp" #include "planned_action_manager.hpp"
planned_action_set::planned_action_set() planned_action_manager::planned_action_manager()
{ {
// TODO Auto-generated constructor stub // TODO Auto-generated constructor stub
} }
planned_action_set::~planned_action_set() planned_action_manager::~planned_action_manager()
{ {
// TODO Auto-generated destructor stub // TODO Auto-generated destructor stub
} }

View File

@ -13,17 +13,17 @@
*/ */
/** /**
* @file planned_action_set.hpp * @file planned_action_manager.hpp
*/ */
#ifndef PLANNED_ACTION_SET_HPP_ #ifndef PLANNED_ACTION_SET_HPP_
#define PLANNED_ACTION_SET_HPP_ #define PLANNED_ACTION_SET_HPP_
class planned_action_set class planned_action_manager
{ {
public: public:
planned_action_set(); planned_action_manager();
virtual ~planned_action_set(); virtual ~planned_action_manager();
}; };
#endif /* PLANNED_ACTION_SET_HPP_ */ #endif /* PLANNED_ACTION_SET_HPP_ */