aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-01-07 17:15:43 +0000
committerVincent Richard <[email protected]>2005-01-07 17:15:43 +0000
commitb2c3554be7cbf2eec7c82b3b5eca9ffa5574a3d5 (patch)
tree8868a472a93ac671d2789dc0454192fdf58d0c9a
parentRemoved useless 'const' on some declarations. (diff)
downloadvmime-b2c3554be7cbf2eec7c82b3b5eca9ffa5574a3d5.tar.gz
vmime-b2c3554be7cbf2eec7c82b3b5eca9ffa5574a3d5.zip
Made 'propertySet::property' public.
-rw-r--r--vmime/propertySet.hpp6
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: