comparison gui/src/backend/OctaveCallbackThread.h @ 13543:8d529f8103dc

Separated backend files to folder.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Tue, 26 Jul 2011 23:15:38 +0200
parents gui/src/OctaveCallbackThread.h@b48ac9ad8de0
children c0e66d6e3dc8
comparison
equal deleted inserted replaced
13542:5b168bbd6044 13543:8d529f8103dc
1 /* OctaveGUI - A graphical user interface for Octave
2 * Copyright (C) 2011 Jacob Dawid
3 * jacob.dawid@googlemail.com
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #ifndef OCTAVECALLBACKTHREAD_H
20 #define OCTAVECALLBACKTHREAD_H
21
22 #include <QThread>
23
24 class OctaveCallbackThread:public QThread
25 {
26 Q_OBJECT
27 public:
28 OctaveCallbackThread (QObject * parent);
29 protected:
30 void run ();
31
32 };
33
34 #endif // OCTAVECALLBACKTHREAD_H