diff options
| author | Vincent Richard <[email protected]> | 2004-10-21 17:05:47 +0200 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2004-10-21 17:05:47 +0200 |
| commit | 2949fb51f13e1236d5c161f02e1c2c8541100e9f (patch) | |
| tree | 991edcf50483116ce83977a4d9e652de8c5328dc /src/encoder.hpp | |
| parent | header class unit tests added (diff) | |
| download | vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.tar.gz vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.zip | |
Refactoring (see ChangeLog).
Diffstat (limited to 'src/encoder.hpp')
| -rw-r--r-- | src/encoder.hpp | 10 |
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: |
