NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkIGILocalDataSourceI.h
Go to the documentation of this file.
1 /*=============================================================================
2 
3  NifTK: A software platform for medical image computing.
4 
5  Copyright (c) University College London (UCL). All rights reserved.
6 
7  This software is distributed WITHOUT ANY WARRANTY; without even
8  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  PURPOSE.
10 
11  See LICENSE.txt in the top level directory for details.
12 
13 =============================================================================*/
14 #ifndef niftkIGILocalDataSourceI_h
15 #define niftkIGILocalDataSourceI_h
16 
17 #include "niftkIGIDataSourcesExports.h"
18 
19 namespace niftk
20 {
21 
29 class NIFTKIGIDATASOURCES_EXPORT IGILocalDataSourceI
30 {
31 public:
32 
33  virtual void GrabData() = 0;
34 
35 protected:
36 
37  IGILocalDataSourceI(); // Purposefully hidden.
38  virtual ~IGILocalDataSourceI(); // Purposefully hidden.
39 
40  IGILocalDataSourceI(const IGILocalDataSourceI&); // Purposefully not implemented.
41  IGILocalDataSourceI& operator=(const IGILocalDataSourceI&); // Purposefully not implemented.
42 
43 };
44 
45 } // end namespace
46 
47 #endif
Abstract base class for local data sources.
Definition: niftkIGILocalDataSourceI.h:29
Definition: niftkExceptionObject.h:21