mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-01-14 00:52:05 +08:00
29 lines
763 B
C
29 lines
763 B
C
|
#ifndef DockManagerH
|
||
|
#define DockManagerH
|
||
|
//============================================================================
|
||
|
/// \file DockManager.h
|
||
|
/// \author Uwe Kindler
|
||
|
/// \date 23.02.2017
|
||
|
/// \brief Declaration of CDockManager
|
||
|
//============================================================================
|
||
|
|
||
|
//============================================================================
|
||
|
// INCLUDES
|
||
|
//============================================================================
|
||
|
#include "DockContainerWidget.h"
|
||
|
|
||
|
namespace ads
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @brief
|
||
|
*/
|
||
|
class CDockManager : public CDockContainerWidget
|
||
|
{
|
||
|
};
|
||
|
|
||
|
} // namespace ads
|
||
|
|
||
|
//---------------------------------------------------------------------------
|
||
|
#endif // DockManagerH
|