simulavr  1.1.0
externaltype.h
Go to the documentation of this file.
1 /*
2  * $Id$
3  */
4 
5 #ifndef EXTERNALTYPE
6 #define EXTERNALTYPE
7 #include <string>
8 
9 class ExternalType {
10  public:
11  virtual void SetNewValueFromUi(const std::string &)=0;
12  virtual ~ExternalType() {}
13 };
14 #endif
virtual void SetNewValueFromUi(const std::string &)=0
virtual ~ExternalType()
Definition: externaltype.h:12