VR-Forces 4.0.4 Class Documentation
include/ngutil/msgItem.h
Go to the documentation of this file.
00001 /*********************************************************************
00002 ** Copyright (c) 2002 MAK Technologies, Inc.
00003 ** All rights reserved.
00004 *********************************************************************/
00005 /*********************************************************************
00006 ** $RCSfile: msgItem.h,v $ $Revision: 1.5 $ $State: Exp $
00007 *********************************************************************/
00008 
00011 
00012 #ifndef DtMsgItem_H
00013 #define DtMsgItem_H
00014 
00015 #include "ngutil/ngutilDefines.h"
00016 #include <QtCore/QString>
00017 
00020 class DT_DLL_ngutil DtMsgItem
00021 {
00022 public:
00023    DtMsgItem( const QString & time, const QString & msg,
00024                    const QString & source );
00025    virtual ~DtMsgItem();
00026 
00027    const QString& time() const;
00028    const QString& msg() const;
00029    const QString& source() const;
00030 
00031 private:
00032    DtMsgItem(const DtMsgItem&);
00033 
00034 protected:
00035    QString myTime;
00036    QString myMsg;
00037    QString mySource;
00038 };
00039 
00040 #endif //! DtMsgItem_H

Document ID: Generated on Fri Jun 29 16:33:32 EDT 2012 from SVN revision 116588
Copyright © 2005-2012 VT MÄK Inc. All Rights Reserved (www.mak.com)