mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-10-10 17:38:10 +00:00
11 lines
177 B
C++
11 lines
177 B
C++
#pragma once
|
|
|
|
#include "CWidget.h"
|
|
|
|
class CStaticWidget : public CWidget
|
|
{
|
|
public:
|
|
CStaticWidget(LPCWSTR title, DWORD style, HWND parent);
|
|
void setText(LPCWSTR text);
|
|
};
|