3D Human Airway Tree
Program generuje ludzkie drzewo oskrzelowe
pinkAsft.h
Idź do dokumentacji tego pliku.
1 /*=========================================================================
2 
3  Program: 3D Human Airway Tree
4  Module: pinkAsft.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 PINKASFT_H
18 #define PINKASFT_H
19 
20 #include <mccodimage.h>
21 #include "boost/tuple/tuple.hpp"
22 #include <QThread>
23 
24 class pinkAsft : public QThread
25 {
26 Q_OBJECT
27 private:
28  struct xvimage *image;
29  int32_t rayonmax;
30  int32_t connex;
31  boost::tuple<std::string, int, int, std::string> &argv;
32 
33 protected:
34  virtual void run();
35 public:
36  pinkAsft(boost::tuple<std::string, int, int, std::string> &);
37  virtual ~pinkAsft();
38 signals:
39  QThread *endCompute(QThread *);
40 };
41 
42 #endif // PINKASFT_H