ITK  6.0.0
Insight Toolkit
itkDynamicLoader.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * https://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkDynamicLoader_h
19 #define itkDynamicLoader_h
20 
21 #include "itkObject.h"
22 #include "itkObjectFactory.h"
23 #include "itksys/DynamicLoader.hxx"
24 
25 namespace itk
26 {
27 
28 // BTX
29 using LibHandle = itksys::DynamicLoader::LibraryHandle;
30 // Cannot use this as this is a void (*)() but ITK old API used to be void*
32 // ETX
33 
44 class ITKCommon_EXPORT DynamicLoader : public Object
45 {
46 public:
47  ITK_DISALLOW_COPY_AND_MOVE(DynamicLoader);
48 
51  using Superclass = Object;
54 
56  itkNewMacro(Self);
57 
59  itkOverrideGetNameOfClassMacro(DynamicLoader);
60 
64  static LibHandle
65  OpenLibrary(const char *);
66 
69  static int CloseLibrary(LibHandle);
70 
72  static void *
73  GetSymbolAddress(LibHandle, const char *);
74 
76  static const char *
77  LibPrefix();
78 
80  static const char *
81  LibExtension();
82 
84  static const char *
85  LastError();
86 
87 protected:
88  DynamicLoader();
89  ~DynamicLoader() override;
90 };
91 } // end namespace itk
92 
93 #endif
itkObjectFactory.h
itk::DynamicLoader
Portable loading of dynamic libraries or dll's.
Definition: itkDynamicLoader.h:44
itk::SmartPointer< Self >
itk::SymbolPointer
itksys::DynamicLoader::SymbolPointer SymbolPointer
Definition: itkDynamicLoader.h:31
itk::LibHandle
itksys::DynamicLoader::LibraryHandle LibHandle
Definition: itkDynamicLoader.h:29
itkObject.h
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::Object
Base class for most ITK classes.
Definition: itkObject.h:61