Go to the documentation of this file.00001
00004 #ifndef _ELEMENT_ELECTRONIQUE_HPP_
00005 #define _ELEMENT_ELECTRONIQUE_HPP_
00006
00007 #include <string>
00008
00009 namespace cpe
00010 {
00012 class element_electronique
00013 {
00014 public:
00015
00016
00017
00018
00019
00021 element_electronique();
00022
00023
00024
00025
00026
00028 void set_name(const std::string& name);
00030 const std::string& name() const;
00031
00032 private:
00033
00035 std::string name_internal;
00036
00037 };
00038 }
00039
00040 #endif