IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseCollections.h
Go to the documentation of this file.
1 // BaseCollections.h:
3 // ------------------
4 //
13 
14 #ifndef __IPSDKUTIL_BASECOLLECTIONS_H__
15 #define __IPSDKUTIL_BASECOLLECTIONS_H__
16 
17 #include <IPSDKUtil/BaseTypes.h>
18 #include <vector>
19 
20 namespace ipsdk {
21 
24 
27 typedef std::vector<ipBool> BoolVector;
28 typedef std::vector<ipInt8> Int8Vector;
29 typedef std::vector<ipUInt8> UInt8Vector;
30 typedef std::vector<ipInt16> Int16Vector;
31 typedef std::vector<ipUInt16> UInt16Vector;
32 typedef std::vector<ipInt32> Int32Vector;
33 typedef std::vector<ipUInt32> UInt32Vector;
34 typedef std::vector<ipInt64> Int64Vector;
35 typedef std::vector<ipUInt64> UInt64Vector;
36 typedef std::vector<ipReal32> Real32Vector;
37 typedef std::vector<ipReal64> Real64Vector;
38 typedef std::vector<std::string> StringVector;
39 typedef std::vector<boost::filesystem::path> PathVector;
41 
44 
45 } // end of namespace ipsdk
46 
47 #endif // __IPSDKUTIL_BASECOLLECTIONS_H__
std::vector< ipUInt8 > UInt8Vector
stl vector collections
Definition: BaseCollections.h:29
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
std::vector< boost::filesystem::path > PathVector
stl vector collections
Definition: BaseCollections.h:39
std::vector< ipUInt32 > UInt32Vector
stl vector collections
Definition: BaseCollections.h:33
std::vector< ipReal64 > Real64Vector
stl vector collections
Definition: BaseCollections.h:37
std::vector< ipInt16 > Int16Vector
stl vector collections
Definition: BaseCollections.h:30
std::vector< ipUInt64 > UInt64Vector
stl vector collections
Definition: BaseCollections.h:35
std::vector< ipReal32 > Real32Vector
stl vector collections
Definition: BaseCollections.h:36
std::vector< ipUInt16 > UInt16Vector
stl vector collections
Definition: BaseCollections.h:31
std::vector< ipInt8 > Int8Vector
stl vector collections
Definition: BaseCollections.h:28
Base types for multiplatform compatibility.
std::vector< ipBool > BoolVector
stl vector collections
Definition: BaseCollections.h:27
std::vector< ipInt32 > Int32Vector
stl vector collections
Definition: BaseCollections.h:32
std::vector< ipInt64 > Int64Vector
stl vector collections
Definition: BaseCollections.h:34
std::vector< std::string > StringVector
stl vector collections
Definition: BaseCollections.h:38