Deleted nas_interface_stack.

This commit is contained in:
Pedro Alvarez 2020-05-08 15:48:43 +01:00 committed by Andre Puschmann
parent 38822873e8
commit 454162cea7
2 changed files with 1 additions and 11 deletions

View File

@ -236,16 +236,6 @@ public:
virtual bool connection_request_completed(bool outcome) = 0;
};
// NAS interface for the Stack
class nas_interface_stack
{
public:
virtual bool switch_on() = 0;
virtual bool switch_off() = 0;
virtual bool enable_data() = 0;
virtual bool disable_data() = 0;
};
// PDCP interface for RRC
class pdcp_interface_rrc
{

View File

@ -39,7 +39,7 @@ using srslte::byte_buffer_t;
namespace srsue {
class nas : public nas_interface_rrc, public nas_interface_stack, public srslte::timer_callback
class nas : public nas_interface_rrc, public srslte::timer_callback
{
public:
explicit nas(srslte::task_sched_handle task_sched_);