Moved List.hpp from controllib to src/include/containers.

This commit is contained in:
James Goppert 2014-03-16 16:21:06 -04:00
parent fd6590cfa7
commit da9dab2799
5 changed files with 7 additions and 7 deletions

View File

@ -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; }

View File

@ -42,7 +42,7 @@
#include <stdint.h>
#include <inttypes.h>
#include "List.hpp"
#include <containers/List.hpp>
// forward declaration
namespace uORB {

View File

@ -42,7 +42,7 @@
#include <systemlib/param/param.h>
#include "Block.hpp"
#include "List.hpp"
#include <containers/List.hpp>
namespace control
{

View File

@ -39,7 +39,7 @@
#pragma once
#include <uORB/uORB.h>
#include <controllib/block/List.hpp>
#include <containers/List.hpp>
namespace uORB

View File

@ -39,7 +39,7 @@
#pragma once
#include <uORB/uORB.h>
#include <controllib/block/List.hpp>
#include <containers/List.hpp>
namespace uORB