Lines Matching refs:Element
19 #include "Element.h"
27 * Specialization of policy base class element for audio_source_t
28 * @tparam audio_source_t Policy Base Element identified by the audio_source_t definition.
31 class Element<audio_source_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_source_t mIdentifier; /**< Unique numerical Identifier of a policy base element*/
84 typedef Element<audio_source_t> InputSource;