1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#ifndef CONFCODEDESIGNER_H
#define CONFCODEDESIGNER_H
#include "serialized_object.h" // Base class: SerializedObject
class ConfCodeDesigner : public SerializedObject {
public:
ConfCodeDesigner();
virtual ~ConfCodeDesigner();
public:
virtual void DeSerialize(Archive& arch);
virtual void Serialize(Archive& arch);
void SetPort(const wxString& Port) {
this->m_Port = Port;
}
void SetPath(const wxString& Path) {
this->m_Path = Path;
}
const wxString& GetPort() const {
return m_Port;
}
const wxString& GetPath() const {
return m_Path;
}
protected:
wxString m_Path;
wxString m_Port;
};
#endif // CONFCODEDESIGNER_H
|