// ====================================================================== // \title FramingProtocol.cpp // \author mstarch // \brief cpp file for FramingProtocol class // // \copyright // Copyright 2009-2021, by the California Institute of Technology. // ALL RIGHTS RESERVED. United States Government Sponsorship // acknowledged. // // ====================================================================== #include "FramingProtocol.hpp" #include "FramingProtocolInterface.hpp" namespace Svc { FramingProtocol::FramingProtocol() : m_interface(nullptr) {} void FramingProtocol::setup(FramingProtocolInterface& interface) { FW_ASSERT(m_interface == nullptr); m_interface = &interface; } } // namespace Svc