VAPOR3 3.9.4
PEnumDropdownHLI.h
Go to the documentation of this file.
1#pragma once
2
3#include "PWidgetHLI.h"
4#include "PEnumDropdown.h"
5
6template<class P> class PEnumDropdownHLI : public PEnumDropdown, public PWidgetHLIBase<P, long> {
7public:
8 PEnumDropdownHLI(const std::string &label, const std::vector<std::string> &items, const std::vector<long> &values, typename PWidgetHLIBase<P, long>::GetterType getter,
10 : PEnumDropdown("", items, values, label), PWidgetHLIBase<P, long>((PWidget *)this, getter, setter)
11 {
12 }
13};
PEnumDropdownHLI(const std::string &label, const std::vector< std::string > &items, const std::vector< long > &values, typename PWidgetHLIBase< P, long >::GetterType getter, typename PWidgetHLIBase< P, long >::SetterType setter)