mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
22 lines
364 B
C++
22 lines
364 B
C++
#ifndef _ide_MethodsCtrls_h_
|
|
#define _ide_MethodsCtrls_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
namespace Upp {
|
|
|
|
class TextOption : public Option {
|
|
public:
|
|
virtual void SetData(const Value& data);
|
|
virtual Value GetData() const;
|
|
};
|
|
|
|
class TextSwitch : public Switch {
|
|
public:
|
|
virtual void SetData(const Value& data);
|
|
virtual Value GetData() const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|