#pragma once #include #include #include "ki/pclass/HashCalculator.h" namespace ki { namespace pclass { class PropertyClass; class IProperty; /** * TODO: Documentation */ class PropertyList { friend PropertyClass; public: /** * TODO: Documentation */ class iterator { friend PropertyList; public: IProperty &operator*() const; IProperty *operator->() const; iterator &operator++(); iterator operator++(int); bool operator==(const iterator &that) const; bool operator!=(const iterator &that) const; private: PropertyList *m_list; int m_index; explicit iterator(PropertyList &list, int index = 0); }; /** * TODO: Documentation */ class const_iterator { friend PropertyList; public: const IProperty &operator*() const; const IProperty *operator->() const; const_iterator &operator++(); const_iterator operator++(int); bool operator==(const const_iterator &that) const; bool operator!=(const const_iterator &that) const; private: const PropertyList *m_list; int m_index; explicit const_iterator(const PropertyList &list, int index = 0); }; std::size_t get_property_count() const; bool has_property(const std::string &name) const; bool has_property(hash_t hash) const; IProperty &get_property(int index); const IProperty &get_property(int index) const; IProperty &get_property(const std::string &name); const IProperty &get_property(const std::string &name) const; IProperty &get_property(hash_t hash); const IProperty &get_property(hash_t hash) const; iterator begin(); const_iterator begin() const; iterator end(); const_iterator end() const; private: std::vector m_properties; std::map m_property_name_lookup; std::map m_property_hash_lookup; void add_property(IProperty &prop); }; } }