Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
ComponentRegistration.hpp
Go to the documentation of this file.
1
6#pragma once
7
8namespace registration {
9
10template < class ObjectType >
12public:
13 explicit ComponentRegister ( ) {
14 ObjectType::registerComponent ( );
15 }
16
18 ObjectType::unregisterComponent ( );
19 }
20
21};
22
23} /* namespace registration */
24
Definition: ComponentRegistration.hpp:11
ComponentRegister()
Definition: ComponentRegistration.hpp:13
~ComponentRegister()
Definition: ComponentRegistration.hpp:17
Definition: AlgoRegistration.hpp:14