#pragma once #include #include "SRWnd.h" namespace SRFramework { class SRFrame : public SRWnd { public: SRFrame(); virtual ~SRFrame(); virtual BOOL Create(const WCString &wcsClassName, const WCString &wcsWindowName, DWORD dwStyle, RECT rect, SRWnd* pParentWnd, HMENU hMenu, HINSTANCE hInstance); BOOL SetTitle(const WCString &wcsTitle); protected: WCString m_wcsTitle; }; }