VR-Forces 4.3.1 Class Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
msgItem.h
Go to the documentation of this file.
1 /*********************************************************************
2 ** Copyright (c) 2014 MAK Technologies, Inc.
3 ** All rights reserved.
4 *********************************************************************/
5 
6 #pragma once
7 
9 
10 #include <QtCore/QString>
11 
14 class DtMsgItem
15 {
16 public:
17  DtMsgItem( const QString & time, const QString & msg,
18  const QString & source );
19  virtual ~DtMsgItem();
20 
21  const QString& time() const;
22  const QString& msg() const;
23  const QString& source() const;
24 
25 private:
26  DtMsgItem(const DtMsgItem&);
27 
28 protected:
29  QString myTime;
30  QString myMsg;
31  QString mySource;
32 };

Document ID: Generated on Wed Jul 29 00:55:00 EDT 2015 from SVN revision 155257
Copyright © 2005-2015 VT MÄK. All Rights Reserved (www.mak.com)