mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-11-18 07:52:20 +00:00
15 lines
277 B
C++
15 lines
277 B
C++
#pragma once
|
|
#include "CWidget.h"
|
|
#include <string>
|
|
|
|
class CEditWidget : public CWidget
|
|
{
|
|
public:
|
|
CEditWidget(DWORD style, HWND parent);
|
|
std::wstring getValue();
|
|
int getNumericValue();
|
|
|
|
void setValue(const std::wstring &value);
|
|
void setNumericValue(int value);
|
|
};
|