NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
niftkServiceConfigurationI.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 
15 #ifndef niftkServiceConfigurationI_h
16 #define niftkServiceConfigurationI_h
17 
18 #include <niftkIGIServicesExports.h>
19 #include <usServiceProperties.h>
20 
21 namespace niftk
22 {
23 
28 class NIFTKIGISERVICES_EXPORT ServiceConfigurationI
29 {
30 
31 public:
32 
37  virtual void Configure(const us::ServiceProperties& properties) = 0;
38 
39 protected:
42 
43 private:
44  ServiceConfigurationI(const ServiceConfigurationI&); // deliberately not implemented
45  ServiceConfigurationI& operator=(const ServiceConfigurationI&); // deliberately not implemented
46 };
47 
48 } // end namespace
49 
50 #endif
ServiceConfigurationI()
Definition: niftkServiceConfigurationI.h:40
Interface to describe how any service should be configured.
Definition: niftkServiceConfigurationI.h:28
virtual ~ServiceConfigurationI()
Definition: niftkServiceConfigurationI.h:41
Definition: niftkExceptionObject.h:21