Pothos  0.1.1
The Pothos dataflow programming software suite
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros
Containers.hpp
Go to the documentation of this file.
1 
11 #pragma once
12 #include <Pothos/Proxy.hpp>
13 #include <vector>
14 #include <set>
15 #include <map>
16 
17 namespace Pothos {
18 
19 typedef std::vector<Proxy> ProxyVector;
20 
21 typedef std::set<Proxy> ProxySet;
22 
23 typedef std::map<Proxy, Proxy> ProxyMap;
24 
25 } // namespace Pothos
std::set< Proxy > ProxySet
Definition: Containers.hpp:21
std::map< Proxy, Proxy > ProxyMap
Definition: Containers.hpp:23
std::vector< Proxy > ProxyVector
Definition: Containers.hpp:19