mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-01-29 23:54:06 +08:00
30 lines
738 B
C++
30 lines
738 B
C++
#ifndef DockWidgetH
|
|
#define DockWidgetH
|
|
//============================================================================
|
|
/// \file DockWidget.h
|
|
/// \author Uwe Kindler
|
|
/// \date 23.02.2017
|
|
/// \brief Declaration of CDockWidget
|
|
//============================================================================
|
|
|
|
//============================================================================
|
|
// INCLUDES
|
|
//============================================================================
|
|
#include <QFrame>
|
|
|
|
namespace ads
|
|
{
|
|
|
|
/**
|
|
* @brief
|
|
*/
|
|
class CDockWidget : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
};
|
|
|
|
} // namespace ads
|
|
|
|
//---------------------------------------------------------------------------
|
|
#endif // DockWidgetH
|