The Sparta Modeling Framework
Loading...
Searching...
No Matches
CoreTypes.hpp
1
2
3#pragma once
4
5#include <vector>
6
8#include "ExampleInst.hpp"
9
10namespace core_example
11{
12
14 typedef sparta::Queue<ExampleInstPtr> InstQueue;
15
18 typedef std::vector<InstQueue::value_type> InstGroup;
19
20 namespace message_categories {
21 const std::string INFO = "info";
22 // More can be added here, with any identifier...
23 }
24
25}
26
Defines the Queue class used for queuing data.
A data structure that allows appending at the back and invalidating from the front.
Definition Queue.hpp:70