3D Human Airway Tree
Program generuje ludzkie drzewo oskrzelowe
pinkFrame.h
Idź do dokumentacji tego pliku.
1 /*=========================================================================
2 
3  Program: 3D Human Airway Tree
4  Module: pinkFrame.h
5 
6  Copyright (c) ESIEE - Michel Couprie and and Kacper Pluta <kacperp@wsinf.edu.pl>
7  All rights reserved.
8  See Copyright.txt or http://leo.wsinf.edu.pl/~kacperp/3dtree for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 
16 
17 #ifndef PINKFRAME_H
18 #define PINKFRAME_H
19 
20 #include <QtCore/QThread>
21 #include <mccodimage.h>
22 #include "boost/tuple/tuple.hpp"
23 
24 class pinkFrame : public QThread
25 {
26 Q_OBJECT
27 private:
28  const boost::tuple<std::string, std::string> &argv;
29  struct xvimage * image;
30  int32_t width;
31 protected:
32  virtual void run();
33 public:
34  pinkFrame(boost::tuple<std::string, std::string> &);
35  virtual ~pinkFrame();
36 signals:
37  QThread *endCompute(QThread *);
38 };
39 
40 #endif // PINKFRAME_H