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
ZblLogMessage.cpp
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: ZblLogMessage.cpp
6  * Created on: 11/15/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 #include "ZblLogMessage.h"
26 
27 namespace Zbl {
28 
30 {
31 }
32 
34 {
35  m_line = message.m_line;
36  m_msgType = message.m_msgType;
37  m_file = message.m_file;
38  m_function = message.m_function;
39  m_category = message.m_category;
40  m_text = message.m_text;
41  m_flush = message.m_flush;
42 }
43 
45 {
46 
47 }
48 
49 
50 } // Zbl
Definition: ZAndGate.cpp:6
bool m_flush
true = flush output buffers and close streams before returning (used for fatal/abort messages) ...
Definition: ZblLogMessage.h:57
This class is used to transfer log messages between threads.
Definition: ZblLogMessage.h:38