24 lines
300 B
C++
24 lines
300 B
C++
/***
|
|
*
|
|
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
|
|
*
|
|
* See the file LICENSE attached with the sources for usage details.
|
|
*
|
|
****/
|
|
|
|
class CComboBox:CWidget
|
|
{
|
|
void() CComboBox;
|
|
|
|
virtual void() Draw;
|
|
};
|
|
|
|
void CComboBox::CComboBox(void)
|
|
{
|
|
|
|
}
|
|
|
|
void CComboBox::Draw(void)
|
|
{
|
|
|
|
}
|