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