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/Object.hpp>
13 #include <string>
14 #include <vector>
15 #include <set>
16 #include <map>
17 
18 namespace Pothos {
19 
20 typedef std::vector<Object> ObjectVector;
21 
22 typedef std::set<Object> ObjectSet;
23 
24 typedef std::map<Object, Object> ObjectMap;
25 
26 typedef std::map<std::string, Object> ObjectKwargs;
27 
28 } // namespace Pothos
std::set< Object > ObjectSet
Definition: Containers.hpp:22
std::map< std::string, Object > ObjectKwargs
Definition: Containers.hpp:26
std::map< Object, Object > ObjectMap
Definition: Containers.hpp:24
std::vector< Object > ObjectVector
Definition: Containers.hpp:20