Home | History | Annotate | Download | only in src

Lines Matching refs:Element

31 class Element
34 Element(const std::string &name)
37 ~Element() {}
40 * Returns identifier of this policy element
42 * @returns string representing the name of this policy element
47 * Set the unique identifier for this policy element.
61 * @return the unique identifier of this policy element.
66 * A Policy element may implement getter/setter function for a given property.
70 * @tparam Property for which this policy element has setter / getter.
71 * @return the property kept track by this policy base element.
77 * A Policy element may implement getter/setter function for a given property.
81 * @tparam Property for which this policy element has setter / getter.
83 * @param[in] property value to be assigned for this policy base element.
85 * @return the property kept track by this policy base element.
92 Element(const Element &object);
93 Element &operator=(const Element &object);
95 std::string mName; /**< Unique literal Identifier of a policy base element*/
96 Key mIdentifier; /**< Unique numerical Identifier of a policy base element*/