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