Home | History | Annotate | Download | only in src

Lines Matching defs:Element

19 #include "Element.h"
31 class Element<audio_usage_t>
34 Element(const std::string &name)
38 ~Element() {}
41 * Returns identifier of this policy element
43 * @returns string representing the name of this policy element
48 * Set the unique identifier for this policy element.
58 * @return the unique identifier of this policy element.
63 * A Policy element may implement getter/setter function for a given property.
75 Element(const Element &object);
76 Element &operator=(const Element &object);
78 std::string mName; /**< Unique literal Identifier of a policy base element*/
79 audio_usage_t mIdentifier; /**< Unique numerical Identifier of a policy base element*/
83 typedef Element<audio_usage_t> Usage;