/** * * \section COPYRIGHT * * Copyright 2013-2021 Software Radio Systems Limited * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the distribution. * */ #ifndef SRSRAN_RLC_AM_BASE_H #define SRSRAN_RLC_AM_BASE_H #include "srsran/common/buffer_pool.h" #include "srsran/common/common.h" #include "srsran/upper/byte_buffer_queue.h" #include "srsran/upper/rlc_common.h" #include #include #include #include namespace srsran { ///< Add rlc_am_base here bool rlc_am_is_control_pdu(uint8_t* payload); bool rlc_am_is_control_pdu(byte_buffer_t* pdu); } // namespace srsran namespace srsue { class pdcp_interface_rlc; class rrc_interface_rlc; } // namespace srsue #endif // SRSRAN_RLC_AM_BASE_H