windows-nt/Source/XPSP1/NT/shell/themes/uxtheme/drawbase.h
2020-09-26 16:20:57 +08:00

16 lines
611 B
C++

//---------------------------------------------------------------------------
// drawbase.h - base class for draw objects
//---------------------------------------------------------------------------
#pragma once
//---------------------------------------------------------------------------
class CRenderObj; // forward
//---------------------------------------------------------------------------
class CDrawBase
{
public:
//---- data ----
BGTYPE _eBgType; // all draw objects must start with this
};
//---------------------------------------------------------------------------