You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
221 B
C
18 lines
221 B
C
3 weeks ago
|
#ifndef CUICOMMON_H
|
||
|
#define CUICOMMON_H
|
||
|
|
||
|
class QLayout;
|
||
|
class QString;
|
||
|
class CUIConfig;
|
||
|
|
||
|
class CUICommon
|
||
|
{
|
||
|
public:
|
||
|
// CUICommon();
|
||
|
|
||
|
protected:
|
||
|
virtual QLayout* appLayout(CUIConfig* conf);
|
||
|
};
|
||
|
|
||
|
#endif // CUICOMMON_H
|