#ifndef HTMXSHATTRIBUTELIST_H #define HTMXSHATTRIBUTELIST_H #include "HtmxObject.h" #include #include #include class HtmxShAttributeList : public HtmxObject { public: // create new item list HtmxShAttributeList(const std::string& id, const std::vector& itemList, std::map& data); // create new item list where each item as a value HtmxShAttributeList(const std::string& id, const std::vector>& itemValueList); static void genIds(std::vector& vec, const std::string& id, const std::vector& itemList); }; #endif // HTMXSHATTRIBUTELIST_H