mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
25 lines
413 B
C++
25 lines
413 B
C++
#ifndef SECTION_CONTENT_WIDGET_H
|
|
#define SECTION_CONTENT_WIDGET_H
|
|
|
|
#include <QFrame>
|
|
|
|
#include "ads/API.h"
|
|
#include "ads/SectionContent.h"
|
|
|
|
ADS_NAMESPACE_BEGIN
|
|
|
|
class SectionWidget;
|
|
|
|
class SectionContentWidget : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SectionContentWidget(SectionContent::RefPtr c, QWidget* parent = 0);
|
|
|
|
private:
|
|
SectionContent::RefPtr _content;
|
|
};
|
|
|
|
ADS_NAMESPACE_END
|
|
#endif |