1 /***************************************************************************
2                           msgline.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 MSGLINE_H
20 #define MSGLINE_H
21 
22 #include <qstring.h>
23 
24 
25 /**
26   *@author Michael Espey
27   */
28 
29 class msgLine
30 {
31 public:
32   	msgLine(int newlinetype, int newquotelevel, QString newline);
33 	  ~msgLine();
34 
35 	  int getType();
36 	  int getQuoteLevel();
37 	  QString getLine();
38 
39 	  enum LineType {BODY, QUOTE, PATH, SEENY};
40 
41 private:
42     int linetype;
43     int quotelevel;
44     QString line;
45 };
46 
47 #endif
48 
49