RTK  2.5.0
Reconstruction Toolkit
rtkGgoArgsInfoManager.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright RTK Consortium
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 rtkGgoArgsInfoManager_h
19 #define rtkGgoArgsInfoManager_h
20 
21 #include "rtkConfiguration.h"
22 #ifdef RTK_PROBE_EACH_FILTER
23 # include "rtkGlobalResourceProbe.h"
24 #endif
25 
26 namespace rtk
27 {
34 template <class TArgsInfo, class TCleanupFunction = void (*)(TArgsInfo *)>
35 class ITK_TEMPLATE_EXPORT args_info_manager
36 {
37 public:
38  args_info_manager(TArgsInfo & args_info, TCleanupFunction cf)
39  {
40  this->args_info_pointer = &args_info;
41  this->cleanup_function = cf;
42 #ifdef RTK_PROBE_EACH_FILTER
43  rtk::GlobalResourceProbe::GetInstance()->SetVerbose(args_info.verbose_flag);
44 #endif
45  }
46  ~args_info_manager() { this->cleanup_function(this->args_info_pointer); }
47 
48 private:
49  TArgsInfo * args_info_pointer;
50  TCleanupFunction cleanup_function;
51 };
52 } // namespace rtk
53 #endif
TCleanupFunction cleanup_function
static Pointer GetInstance()
args_info_manager(TArgsInfo &args_info, TCleanupFunction cf)