Use nested namespaces (C++17 feature)

This commit is contained in:
Mat Sutcliffe
2021-09-15 21:44:54 +01:00
parent 3f2e5b0b69
commit 57d32da826
1345 changed files with 146075 additions and 150376 deletions

View File

@@ -15,31 +15,28 @@
#include <QScopedPointer>
namespace Ui { class CMatchingStatisticsComponent; }
namespace BlackGui
namespace BlackGui::Components
{
namespace Components
/*!
* Show statistics about matching results
*/
class CMatchingStatisticsComponent : public QFrame
{
/*!
* Show statistics about matching results
*/
class CMatchingStatisticsComponent : public QFrame
{
Q_OBJECT
Q_OBJECT
public:
//! Constructor
explicit CMatchingStatisticsComponent(QWidget *parent = nullptr);
public:
//! Constructor
explicit CMatchingStatisticsComponent(QWidget *parent = nullptr);
//! Destructor
virtual ~CMatchingStatisticsComponent();
//! Destructor
virtual ~CMatchingStatisticsComponent();
private:
//! Show statistics
void onGenerateClicked();
private:
//! Show statistics
void onGenerateClicked();
QScopedPointer<Ui::CMatchingStatisticsComponent> ui;
};
} // ns
QScopedPointer<Ui::CMatchingStatisticsComponent> ui;
};
} // ns
#endif // guard