mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-12-26 08:01:32 +08:00
27 lines
456 B
C
27 lines
456 B
C
|
#ifndef ADS_INTERNAL_HEADER
|
||
|
#define ADS_INTERNAL_HEADER
|
||
|
|
||
|
#include "ads/API.h"
|
||
|
#include "ads/SectionContent.h"
|
||
|
|
||
|
ADS_NAMESPACE_BEGIN
|
||
|
class SectionContent;
|
||
|
class SectionTitleWidget;
|
||
|
class SectionContentWidget;
|
||
|
|
||
|
|
||
|
class InternalContentData
|
||
|
{
|
||
|
public:
|
||
|
InternalContentData();
|
||
|
~InternalContentData();
|
||
|
|
||
|
SectionContent::RefPtr content;
|
||
|
SectionTitleWidget* titleWidget;
|
||
|
SectionContentWidget* contentWidget;
|
||
|
};
|
||
|
|
||
|
|
||
|
ADS_NAMESPACE_END
|
||
|
#endif
|