Argoday / IPL

IPL is a C++ template meta-programming based Image Processing Library designed for quick and easy implementation of Computer Vision and Computer Graphics algorithms while preserving runtime performance. Integrates with Qt, LibPNG, and FFMPEG
Other
8 stars 3 forks source link

Add light-weight Vector class #12

Closed Argoday closed 12 years ago

Argoday commented 12 years ago

Add light-weight Vector::Vector class to reduce dependence on std::vector which adds significantly to DLL size while most of std::vector's functionality is left unused

Argoday commented 12 years ago

I eventually decided against making this change. There is no point in duplicating fundamental stl containers just yet. Later if code size becomes a priority then this will need to be revisited - however when compiling statically this isn't much of a real issue.