1 /***************************************************************************
2                           msgbody.h  -  description
3                              -------------------
4     begin                : Sat Apr 10 1999
5     copyright            : (C) 1999 by Michael Espey
6     email                : tracer@camouflage.hh.uunet.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 
18 
19 #ifndef MSGBODY_H
20 #define MSGBODY_H
21 
22 #include <qlist.h>
23 #include "msgline.h"
24 
25 
26 /**
27   *@author Michael Espey
28   */
29 
30 class msgBody
31 {
32 public:
33   	msgBody();
34 	  ~msgBody();
35 
36 	  void append(msgLine *newmsgline);
37 
38 private:
39     QList<msgLine> bodylist;
40 };
41 
42 #endif
43 
44 
45