Na endlich :/

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@884 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-05-28 16:23:17 +00:00
parent 4051af860e
commit fb89ad3864
10 changed files with 84 additions and 76 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
#ifndef __RADIO_PROCESSOR_HPP_
#define __RADIO_PROCESSOR_HPP_
#include <forward_list>
#include <list>
#include <Block.hpp>
#pragma once
@@ -14,7 +14,7 @@ public:
void blockAdd(Block &block)
{
m_blockList.push_front(&block);
m_blockList.push_back(&block);
}
void blockRem(Block &block)
@@ -31,7 +31,7 @@ public:
}
private:
std::forward_list<Block*>m_blockList;
std::list<Block*>m_blockList;
};
#endif