#pragma once #include #include namespace llarp::test { template class LlarpTest { protected: CryptoImpl m_crypto; CryptoManager cm; LlarpTest() : cm(&m_crypto) { static_assert(std::is_base_of::value, ""); } ~LlarpTest() {} }; template <> inline LlarpTest::~LlarpTest() { } // namespace test }