1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #ifndef HOOKS_PARSER_H
- #define HOOKS_PARSER_H
- #include <cc/data.h>
- #include <cc/simple_parser.h>
- #include <hooks/hooks_config.h>
- namespace isc {
- namespace hooks {
- class HooksLibrariesParser : public isc::data::SimpleParser {
- public:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- void parse(HooksConfig& libraries, isc::data::ConstElementPtr value);
- };
- };
- };
- #endif
|