3D Human Airway Tree
Program generuje ludzkie drzewo oskrzelowe
removeTmp.h
Idź do dokumentacji tego pliku.
1 /*=========================================================================
2 
3  Program: 3D Human Airway Tree
4  Module: removeTmp.h
5 
6  Copyright (c) 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 =========================================================================*/
16 
17 #ifndef REMOVE_TMP
18 #define REMOVE_TMP
19 
20 #include <boost/filesystem.hpp>
21 
22 class removeTmp
23 {
24 private:
25  boost::filesystem::wpath file0;
26  boost::filesystem::wpath file1;
27  boost::filesystem::wpath file2;
28  boost::filesystem::wpath file3;
29 public:
30  removeTmp();
31  virtual ~removeTmp(){}
32  void removeAll();
33  void removeRAW();
34  void removeFrame();
35  void removePGM();
36 };
37 
38 #endif