Added/moved namespaces in events module

This commit is contained in:
Alessandro Simovic
2018-07-03 10:28:27 +02:00
committed by Beat Küng
parent c684275018
commit 1982957bef
8 changed files with 50 additions and 6 deletions
+7 -1
View File
@@ -43,7 +43,10 @@
#include "status_display.h"
#include <drivers/drv_led.h>
using namespace status;
namespace events
{
namespace status
{
StatusDisplay::StatusDisplay(const events::SubscriberHandler &subscriber_handler)
: _subscriber_handler(subscriber_handler)
@@ -106,3 +109,6 @@ void StatusDisplay::publish()
_led_control_pub = orb_advertise_queue(ORB_ID(led_control), &_led_control, LED_UORB_QUEUE_LENGTH);
}
}
} /* namespace status */
} /* namespace events */