moved typedefs into namespace

This commit is contained in:
Robin Müller 2020-06-24 12:03:52 +02:00
parent 0c32a96452
commit 08f25370f3
1 changed files with 2 additions and 3 deletions

View File

@ -6,9 +6,6 @@
#include <set>
using SlotList = std::multiset<FixedSequenceSlot>;
using SlotListIter = std::multiset<FixedSequenceSlot>::iterator;
/**
* @brief This class is the representation of a Polling Sequence Table in software.
* @details
@ -27,6 +24,8 @@ using SlotListIter = std::multiset<FixedSequenceSlot>::iterator;
*/
class FixedSlotSequence {
public:
using SlotList = std::multiset<FixedSequenceSlot>;
using SlotListIter = std::multiset<FixedSequenceSlot>::iterator;
/**
* @brief The constructor of the FixedSlotSequence object.