diff options
author | Vincent Richard <[email protected]> | 2005-07-12 22:28:02 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-07-12 22:28:02 +0000 |
commit | 681297e10b666e13cc463f6fbb16236f36c3266c (patch) | |
tree | 5d2392e2283232ed3475cd9c69e22897b03e8a97 /src/base.cpp | |
parent | Added contentHandler::extractRaw(). (diff) | |
download | vmime-681297e10b666e13cc463f6fbb16236f36c3266c.tar.gz vmime-681297e10b666e13cc463f6fbb16236f36c3266c.zip |
Reference counting and smart pointers.
Diffstat (limited to 'src/base.cpp')
-rw-r--r-- | src/base.cpp | 5 |
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 { |