| 119 | |
| 120 | |
| 121 | inline InputDevices::InputDevices() |
| 122 | : m_count(0), m_head(0), m_ifp(0, "", ""), m_ofp(0, "", ""), commands(*getDefaultMemoryPool()) |
| 123 | { |
| 124 | } |
| 125 | |
| 126 | inline InputDevices::InputDevices(Firebird::MemoryPool& p) |
| 127 | : m_count(0), m_head(0), m_ifp(0, "", ""), m_ofp(0, "", ""), commands(p) |
nothing calls this directly
no test coverage detected