Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 1 | #include "extensions.hpp" |
| 2 | |
Patrick Williams | a517197 | 2021-04-16 20:10:01 -0500 | [diff] [blame] | 3 | // The 'extensions_test' testcase needs to define these itself. |
| 4 | // Skip over the definition to avoid duplicate symbol definitions. |
| 5 | #ifndef TESTCASE_extensions_test |
| 6 | |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 7 | namespace phosphor |
| 8 | { |
| 9 | namespace logging |
| 10 | { |
| 11 | |
| 12 | StartupFunctions Extensions::startupFunctions{}; |
| 13 | CreateFunctions Extensions::createFunctions{}; |
| 14 | DeleteFunctions Extensions::deleteFunctions{}; |
| 15 | DeleteProhibitedFunctions Extensions::deleteProhibitedFunctions{}; |
| 16 | Extensions::DefaultErrorCaps Extensions::defaultErrorCaps = |
| 17 | Extensions::DefaultErrorCaps::enable; |
| 18 | |
| 19 | } // namespace logging |
| 20 | } // namespace phosphor |
Patrick Williams | a517197 | 2021-04-16 20:10:01 -0500 | [diff] [blame] | 21 | |
| 22 | #endif |