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
ZsqlResult.h
Go to the documentation of this file.
1 /*
2  * Zuble - A run-time system for QML/Javascript applications
3  * Copyright (C) 2013, 2014 Bob Dinitto
4  *
5  * ZsqlResult.h
6  *
7  * Created on: 06-Aug, 2014
8  * Author: Bob Dinitto bob@ninzo.com
9  *
10  * Zuble is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  *
24  */
25 
26 #ifndef ZSQLRESULT_H
27 #define ZSQLRESULT_H
28 
29 #include <QObject>
30 #include "zblcore_global.h"
31 
32 namespace Zbl
33 {
34 
39 class ZsqlResult : public QObject
40 {
41  Q_OBJECT
42 public:
43  explicit ZsqlResult(QObject *parent = 0);
44 
45 signals:
46 
47 public slots:
48 
49 };
50 
51 } // Zbl
52 
53 #endif // ZSQLRESULT_H
The ZsqlResult class (TDB: currently unused!)
Definition: ZsqlResult.h:39
Definition: ZAndGate.cpp:6
ZsqlResult(QObject *parent=0)
Definition: ZsqlResult.cpp:31