summaryrefslogtreecommitdiffstats
path: root/libmail/envelope.C
diff options
context:
space:
mode:
Diffstat (limited to 'libmail/envelope.C')
-rw-r--r--libmail/envelope.C34
1 files changed, 34 insertions, 0 deletions
diff --git a/libmail/envelope.C b/libmail/envelope.C
new file mode 100644
index 0000000..f5838aa
--- /dev/null
+++ b/libmail/envelope.C
@@ -0,0 +1,34 @@
+/*
+** Copyright 2002, Double Precision Inc.
+**
+** See COPYING for distribution information.
+*/
+#include "libmail_config.h"
+#include "envelope.H"
+#include "rfcaddr.H"
+
+LIBMAIL_START
+
+envelope::envelope() : date(0)
+{
+}
+
+envelope::~envelope()
+{
+}
+
+xenvelope::xenvelope() : arrivalDate(0), messageSize(0)
+{
+}
+
+xenvelope::~xenvelope()
+{
+}
+
+xenvelope &xenvelope::operator=(const envelope &e)
+{
+ ((envelope &)*this)=e;
+ return *this;
+}
+
+LIBMAIL_END