Qt-Advanced-Docking-System/AdvancedDockingSystem/include/ads/SectionContentWidget.h
2016-02-15 11:13:58 +01:00

29 lines
473 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 ContainerWidget;
class SectionWidget;
class SectionContentWidget : public QFrame
{
Q_OBJECT
friend class ContainerWidget;
public:
SectionContentWidget(SectionContent::RefPtr c, QWidget* parent = 0);
private:
SectionContent::RefPtr _content;
};
ADS_NAMESPACE_END
#endif