This reverts commit 6280d9fb0184275843a8f4406c7293e41e65a639, reversing changes made to 3c9c8b8c6a2b2e7430ff09efdc2cc0c1996b16ca.
29 lines
541 B
C++
29 lines
541 B
C++
#ifndef ROCKETTREEVIEW_H
|
|
#define ROCKETTREEVIEW_H
|
|
|
|
/// \cond
|
|
// C headers
|
|
// C++ headers
|
|
// 3rd party headers
|
|
#include <QTreeView>
|
|
/// \endcond
|
|
|
|
// qtrocket headers
|
|
|
|
/**
|
|
* @brief RocketTreeView basically just renames QTreeView with a specific
|
|
* memorable name.
|
|
*
|
|
* The purpose is to provide an exploded view of the components that make up the
|
|
* rocket design, and their relationships.
|
|
*/
|
|
class RocketTreeView : public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RocketTreeView(QWidget* parent = nullptr);
|
|
};
|
|
|
|
#endif // ROCKETTREEVIEW_H
|