X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fenum.hpp;h=0193e238d562b224828bc98ac70b49c105b63dd0;hp=0ae8a9c65950dace7499d825f4b1d8e98e62a5dc;hb=78bf7ce5aaa1e02717973dc559c24973a313b541;hpb=c6246dc56ed01d7e99aa65ab88b8c191300b1ebd diff --git a/pv/prop/enum.hpp b/pv/prop/enum.hpp index 0ae8a9c6..0193e238 100644 --- a/pv/prop/enum.hpp +++ b/pv/prop/enum.hpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_PROP_ENUM_HPP @@ -28,6 +27,9 @@ #include +using std::pair; +using std::vector; + Q_DECLARE_METATYPE(Glib::VariantBase); class QComboBox; @@ -40,7 +42,8 @@ class Enum : public Property Q_OBJECT; public: - Enum(QString name, std::vector > values, + Enum(QString name, QString desc, + vector > values, Getter getter, Setter setter); virtual ~Enum() = default; @@ -53,12 +56,12 @@ private Q_SLOTS: void on_current_item_changed(int); private: - const std::vector< std::pair > values_; + const vector< pair > values_; QComboBox *selector_; }; -} // prop -} // pv +} // namespace prop +} // namespace pv #endif // PULSEVIEW_PV_PROP_ENUM_HPP