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