aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoder.hpp')
-rw-r--r--src/encoder.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/encoder.hpp b/src/encoder.hpp
index 1aa97d49..2103d896 100644
--- a/src/encoder.hpp
+++ b/src/encoder.hpp
@@ -57,30 +57,30 @@ public:
*
* @return properties of the encoder
*/
- const propertySet& properties() const;
+ const propertySet& getProperties() const;
/** Return the properties of the encoder.
*
* @return properties of the encoder
*/
- propertySet& properties();
+ propertySet& getProperties();
/** Return a list of property names that can be set for
* this encoder.
*
* @return list of property names
*/
- virtual const std::vector <string> availableProperties() const;
+ virtual const std::vector <string> getAvailableProperties() const;
/** Return the results returned by this encoder.
*
* @return results returned by the encoder
*/
- const propertySet& results() const;
+ const propertySet& getResults() const;
protected:
- propertySet& results();
+ propertySet& getResults();
private: