|
|
@ -20,18 +20,20 @@ struct DLL_API TestVectors |
|
|
|
std::vector<int> GetIntVector(); |
|
|
|
std::vector<int> GetIntVector(); |
|
|
|
int SumIntVector(std::vector<int>& vec); |
|
|
|
int SumIntVector(std::vector<int>& vec); |
|
|
|
|
|
|
|
|
|
|
|
// Should get mapped to List<int>
|
|
|
|
DISABLE_WARNING_ONCE(4251, |
|
|
|
std::vector<int> IntVector; |
|
|
|
// Should get mapped to List<int>
|
|
|
|
// Should get mapped to List<IntPtr>
|
|
|
|
std::vector<int> IntVector; |
|
|
|
std::vector<int*> IntPtrVector; |
|
|
|
// Should get mapped to List<IntPtr>
|
|
|
|
// Should get mapped to List<IntWrapper>
|
|
|
|
std::vector<int*> IntPtrVector; |
|
|
|
std::vector<IntWrapper> IntWrapperVector; |
|
|
|
// Should get mapped to List<IntWrapper>
|
|
|
|
// Should get mapped to List<IntWrapper>
|
|
|
|
std::vector<IntWrapper> IntWrapperVector; |
|
|
|
std::vector<IntWrapper*> IntWrapperPtrVector; |
|
|
|
// Should get mapped to List<IntWrapper>
|
|
|
|
// Should get mapped to List<IntWrapperValueType>
|
|
|
|
std::vector<IntWrapper*> IntWrapperPtrVector; |
|
|
|
std::vector<IntWrapperValueType> IntWrapperValueTypeVector; |
|
|
|
// Should get mapped to List<IntWrapperValueType>
|
|
|
|
// Should get mapped to List<IntWrapperValueType>
|
|
|
|
std::vector<IntWrapperValueType> IntWrapperValueTypeVector; |
|
|
|
VectorTypedef IntWrapperValueTypeVectorTypedef; |
|
|
|
// Should get mapped to List<IntWrapperValueType>
|
|
|
|
|
|
|
|
VectorTypedef IntWrapperValueTypeVectorTypedef; |
|
|
|
|
|
|
|
) |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
struct DLL_API OStreamTest |
|
|
|
struct DLL_API OStreamTest |
|
|
|