Home | History | Annotate | Download | only in src

Lines Matching refs:Element

19 #include "Element.h"
32 class Element<audio_stream_type_t>
35 Element(const std::string &name)
39 ~Element() {}
42 * Returns identifier of this policy element
44 * @returns string representing the name of this policy element
49 * Set the unique identifier for this policy element.
59 * @return the unique identifier of this policy element.
64 * A Policy element may implement getter/setter function for a given property.
76 Element(const Element &object);
77 Element &operator=(const Element &object);
79 std::string mName; /**< Unique literal Identifier of a policy base element*/
80 audio_stream_type_t mIdentifier; /**< Unique numerical Identifier of a policy base element*/
87 typedef Element<audio_stream_type_t> Stream;