WARNING: USE THIS SOFTWARE AT YOUR OWN RISK! THIS IS EXPERIMENTAL SOFTWARE NOT INTENDED FOR PRODUCTION USE! Zuble is currently an early stage prototype. As such Zuble is minimally tested and inherently unstable. It is provided for experimental, development, and demonstration purposes only. Zuble QML Types   |  Zuble C++ Classes   |  Zuble Overview
Zuble  0.1
Zuble Framework C++/QML extension API
ZblLogRecord.h
Go to the documentation of this file.
1 /*
2  * Zuble - A run-time system for QML/Javascript applications
3  * Copyright (C) 2015 Bob Dinitto
4  *
5  * Filename: ZblLogRecord.h
6  * Created on: 11/26/2015
7  * Author: Bob Dinitto
8  *
9  * Zuble is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  *
23  */
24 
25 #ifndef ZBLLOGRECORD_H
26 #define ZBLLOGRECORD_H
27 
28 #include "ZblLogMark.h"
29 #include <QVariantList>
30 
31 
32 
33 namespace Zbl {
34 
50 {
51 public:
52  ZblLogRecord();
53  ZblLogRecord(const ZblLogRecord& other);
54  ZblLogRecord& operator=(const ZblLogRecord& other);
55 
56 protected:
57 
58  QByteArray m_ba;
59 
60  QVariantList m_vl;
61 
62 };
63 
64 typedef QList<ZblLogRecord> zLogRecordList;
65 
66 } // Zbl
67 
68 #endif // ZBLLOGRECORD_H
ZblLogRecord & operator=(const ZblLogRecord &other)
QList< ZblLogRecord > zLogRecordList
Definition: ZblLogRecord.h:64
QByteArray m_ba
Definition: ZblLogRecord.h:58
Definition: ZAndGate.cpp:6
QVariantList m_vl
Definition: ZblLogRecord.h:60
Contains a cached representation of a log record.
Definition: ZblLogRecord.h:49