diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-10-06 10:33:05 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-10-06 10:33:05 -0700 |
commit | b479c22c713be413b9135be8f1d4e108d33f17f6 (patch) | |
tree | aaaae4d4fcb5df6ef6414a6e825e8f4e4730f6ee /mimelib/text.cpp | |
download | lurker-b479c22c713be413b9135be8f1d4e108d33f17f6.tar.gz lurker-b479c22c713be413b9135be8f1d4e108d33f17f6.tar.bz2 lurker-b479c22c713be413b9135be8f1d4e108d33f17f6.zip |
lurker-2.3
mimelib-3.1.1
Diffstat (limited to 'mimelib/text.cpp')
-rw-r--r-- | mimelib/text.cpp | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/mimelib/text.cpp b/mimelib/text.cpp new file mode 100644 index 0000000..394c60a --- /dev/null +++ b/mimelib/text.cpp @@ -0,0 +1,130 @@ +//============================================================================= +// File: text.cpp +// Contents: Definitions for DwText +// Maintainer: Doug Sauder <dwsauder@fwb.gulf.net> +// WWW: http://www.fwb.gulf.net/~dwsauder/mimepp.html +// $Revision: 1.9 $ +// $Date: 2002/04/22 09:45:43 $ +// +// Copyright (c) 1996, 1997 Douglas W. Sauder +// All rights reserved. +// +// IN NO EVENT SHALL DOUGLAS W. SAUDER BE LIABLE TO ANY PARTY FOR DIRECT, +// INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF +// THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF DOUGLAS W. SAUDER +// HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// DOUGLAS W. SAUDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT +// NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +// PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" +// BASIS, AND DOUGLAS W. SAUDER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, +// SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +// +//============================================================================= + +#define DW_IMPLEMENTATION + +#include <mimelib/config.h> +#include <mimelib/debug.h> +#include <mimelib/string.h> +#include <mimelib/text.h> + + +const char* const DwText::sClassName = "DwText"; + + +DwText* (*DwText::sNewText)(const DwString&, DwMessageComponent*) = 0; + + +DwText* DwText::NewText(const DwString& aStr, DwMessageComponent* aParent) +{ + DwText* text; + if (sNewText) { + text = sNewText(aStr, aParent); + } + else { + text = new DwText(aStr, aParent); + } + return text; +} + + +DwText::DwText() +{ + mClassId = kCidText; + mClassName = sClassName; +} + + +DwText::DwText(const DwText& aText) + : DwFieldBody(aText) +{ + mClassId = kCidText; + mClassName = sClassName; +} + + +DwText::DwText(const DwString& aStr, DwMessageComponent* aParent) + : DwFieldBody(aStr, aParent) +{ + mClassId = kCidText; + mClassName = sClassName; +} + + +DwText::~DwText() +{ +} + + +const DwText& DwText::operator = (const DwText& aText) +{ + if (this == &aText) return *this; + DwFieldBody::operator = (aText); + return *this; +} + + +void DwText::Parse() +{ + mIsModified = 0; +} + + +void DwText::Assemble() +{ + mIsModified = 0; +} + + +DwMessageComponent* DwText::Clone() const +{ + return new DwText(*this); +} + + +void DwText::PrintDebugInfo(std::ostream& aStrm, int /*aDepth*/) const +{ +#if defined (DW_DEBUG_VERSION) + aStrm << + "------------------ Debug info for DwText class -----------------\n"; + _PrintDebugInfo(aStrm); +#endif // defined (DW_DEBUG_VERSION) +} + + +void DwText::_PrintDebugInfo(std::ostream& aStrm) const +{ +#if defined (DW_DEBUG_VERSION) + DwFieldBody::_PrintDebugInfo(aStrm); +#endif // defined (DW_DEBUG_VERSION) +} + + +void DwText::CheckInvariants() const +{ +#if defined (DW_DEBUG_VERSION) + DwFieldBody::CheckInvariants(); +#endif // defined (DW_DEBUG_VERSION) +} + |