diff options
| author | Vincent Richard <[email protected]> | 2005-01-07 18:15:43 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-01-07 18:15:43 +0100 |
| commit | b2c3554be7cbf2eec7c82b3b5eca9ffa5574a3d5 (patch) | |
| tree | 8868a472a93ac671d2789dc0454192fdf58d0c9a | |
| parent | Removed useless 'const' on some declarations. (diff) | |
| download | vmime-b2c3554be7cbf2eec7c82b3b5eca9ffa5574a3d5.tar.gz vmime-b2c3554be7cbf2eec7c82b3b5eca9ffa5574a3d5.zip | |
Made 'propertySet::property' public.
| -rw-r--r-- | vmime/propertySet.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/vmime/propertySet.hpp b/vmime/propertySet.hpp index cf01c360..bfde4729 100644 --- a/vmime/propertySet.hpp +++ b/vmime/propertySet.hpp @@ -41,8 +41,10 @@ namespace vmime class propertySet { -protected: +public: + /** A property holds a (name,value) pair. + */ class property { public: @@ -90,6 +92,8 @@ protected: string m_value; }; +protected: + class propertyProxy { public: |
