forked from Archive/PX4-Autopilot
Moved List.hpp from controllib to src/include/containers.
This commit is contained in:
parent
fd6590cfa7
commit
da9dab2799
|
@ -32,9 +32,9 @@
|
|||
****************************************************************************/
|
||||
|
||||
/**
|
||||
* @file Node.h
|
||||
* @file List.hpp
|
||||
*
|
||||
* A node of a linked list.
|
||||
* A linked list.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
@ -43,7 +43,7 @@ template<class T>
|
|||
class __EXPORT ListNode
|
||||
{
|
||||
public:
|
||||
ListNode() : _sibling(NULL) {
|
||||
ListNode() : _sibling(nullptr) {
|
||||
}
|
||||
void setSibling(T sibling) { _sibling = sibling; }
|
||||
T getSibling() { return _sibling; }
|
|
@ -42,7 +42,7 @@
|
|||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "List.hpp"
|
||||
#include <containers/List.hpp>
|
||||
|
||||
// forward declaration
|
||||
namespace uORB {
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
#include <systemlib/param/param.h>
|
||||
|
||||
#include "Block.hpp"
|
||||
#include "List.hpp"
|
||||
#include <containers/List.hpp>
|
||||
|
||||
namespace control
|
||||
{
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <uORB/uORB.h>
|
||||
#include <controllib/block/List.hpp>
|
||||
#include <containers/List.hpp>
|
||||
|
||||
|
||||
namespace uORB
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <uORB/uORB.h>
|
||||
#include <controllib/block/List.hpp>
|
||||
#include <containers/List.hpp>
|
||||
|
||||
|
||||
namespace uORB
|
||||
|
|
Loading…
Reference in New Issue