From 2949fb51f13e1236d5c161f02e1c2c8541100e9f Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Thu, 21 Oct 2004 15:05:47 +0000 Subject: Refactoring (see ChangeLog). --- src/encoder.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/encoder.hpp') 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 availableProperties() const; + virtual const std::vector 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: -- cgit