aboutsummaryrefslogtreecommitdiffstats
path: root/src/base.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-07-12 22:28:02 +0000
committerVincent Richard <[email protected]>2005-07-12 22:28:02 +0000
commit681297e10b666e13cc463f6fbb16236f36c3266c (patch)
tree5d2392e2283232ed3475cd9c69e22897b03e8a97 /src/base.cpp
parentAdded contentHandler::extractRaw(). (diff)
downloadvmime-681297e10b666e13cc463f6fbb16236f36c3266c.tar.gz
vmime-681297e10b666e13cc463f6fbb16236f36c3266c.zip
Reference counting and smart pointers.
Diffstat (limited to 'src/base.cpp')
-rw-r--r--src/base.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/base.cpp b/src/base.cpp
index 235bedbf..79ad0655 100644
--- a/src/base.cpp
+++ b/src/base.cpp
@@ -96,6 +96,11 @@ const string CRLF = "\r\n";
const string SUPPORTED_MIME_VERSION = "1.0";
+/** Null reference.
+ */
+const null_ref null = null_ref();
+
+
// Line length limits
namespace lineLengthLimits
{