mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-11-18 07:52:20 +00:00
10 lines
135 B
C++
10 lines
135 B
C++
#pragma once
|
|
|
|
#include "CWidget.h"
|
|
|
|
class CButton : public CWidget
|
|
{
|
|
public:
|
|
CButton(LPCWSTR title, DWORD style, HWND parent);
|
|
};
|