Subversion Repositories HomeAutomation

Rev

Rev 1602 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1602 Rev 1642
Line 21... Line 21...
21
#include "Module.h"
21
#include "Module.h"
22
 
22
 
23
#include <boost/lexical_cast.hpp>
23
#include <boost/lexical_cast.hpp>
24
 
24
 
25
namespace atom {
25
namespace atom {
26
namespace can {
26
namespace control {
27
 
27
 
28
Module::Module(Module::Id id, std::string name, std::string class_name)
28
Module::Module(Module::Id id, std::string name, std::string class_name)
29
{
29
{
30
    this->id_ = id;
30
    this->id_ = id;
31
    this->name_ = name;
31
    this->name_ = name;
Line 71... Line 71...
71
std::string Module::GetClassName()
71
std::string Module::GetClassName()
72
{
72
{
73
    return this->class_name_;
73
    return this->class_name_;
74
}
74
}
75
   
75
   
76
}; // namespace can
76
}; // namespace control
77
}; // namespace atom
77
}; // namespace atom