summaryrefslogtreecommitdiffstats
path: root/mimelib/fieldbdy.cpp
blob: 9c38716916cdea00457be8b05da89dd11aa2aa74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
//=============================================================================
// File:       fieldbdy.cpp
// Contents:   Definitions for DwFieldBody
// Maintainer: Doug Sauder <dwsauder@fwb.gulf.net>
// WWW:        http://www.fwb.gulf.net/~dwsauder/mimepp.html
//
// 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 <stdlib.h>
#include <string.h>
#include <mimelib/string.h>
#include <mimelib/fieldbdy.h>
#include <mimelib/field.h>


const char* const DwFieldBody::sClassName = "DwFieldBody";


DwFieldBody::DwFieldBody()
{
    mLineOffset = 0;
    mDoFolding = DwTrue;
    mClassId = kCidFieldBody;
    mClassName = sClassName;
}


DwFieldBody::DwFieldBody(const DwFieldBody& aFieldBody)
  : DwMessageComponent(aFieldBody)
{
    mLineOffset = aFieldBody.mLineOffset;
    mDoFolding = aFieldBody.mDoFolding;
    mClassId = kCidFieldBody;
    mClassName = sClassName;
}


DwFieldBody::DwFieldBody(const DwString& aStr, DwMessageComponent* aParent)
  : DwMessageComponent(aStr, aParent)
{
    mLineOffset = 0;
    mDoFolding = DwTrue;
    mClassId = kCidFieldBody;
    mClassName = sClassName;
}


DwFieldBody::~DwFieldBody()
{
}


const DwFieldBody& DwFieldBody::operator = (const DwFieldBody& aFieldBody)
{
    if (this == &aFieldBody) return *this;
    DwMessageComponent::operator = (aFieldBody);
    mLineOffset = aFieldBody.mLineOffset;
    return *this;
}


#if defined (DW_DEBUG_VERSION)
void DwFieldBody::PrintDebugInfo(std::ostream& aStrm, int /*aDepth*/) const
{
    aStrm <<
    "--------------- Debug info for DwFieldBody class ---------------\n";
    _PrintDebugInfo(aStrm);
}
#else
void DwFieldBody::PrintDebugInfo(std::ostream& , int ) const {}
#endif // defined (DW_DEBUG_VERSION)


#if defined (DW_DEBUG_VERSION)
void DwFieldBody::_PrintDebugInfo(std::ostream& aStrm) const
{
    DwMessageComponent::_PrintDebugInfo(aStrm);
    aStrm << "LineOffset:       " << mLineOffset << '\n';
    aStrm << "IsFolding:        " << (IsFolding() ? "True" : "False") << '\n';
}
#else
void DwFieldBody::_PrintDebugInfo(std::ostream& ) const {}
#endif // defined (DW_DEBUG_VERSION)


void DwFieldBody::CheckInvariants() const
{
#if defined (DW_DEBUG_VERSION)
    DwMessageComponent::CheckInvariants();
#endif // defined (DW_DEBUG_VERSION)
}