MuseScore/mscore/inspector/inspectorFret.h
2015-01-15 14:50:50 +01:00

39 lines
997 B
C++

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2012 Werner Schweer and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENSE.GPL
//=============================================================================
#ifndef __INSPECTOR_FRET_H__
#define __INSPECTOR_FRET_H__
#include "inspector.h"
#include "inspectorBase.h"
#include "ui_inspector_fret.h"
namespace Ms {
//---------------------------------------------------------
// InspectorFret
//---------------------------------------------------------
class InspectorFret : public InspectorBase {
Q_OBJECT
UiInspectorElement e;
Ui::InspectorFret f;
public:
InspectorFret(QWidget* parent);
};
} // namespace Ms
#endif