UDatCtrl
Small C++ lib includes container types with auto memory management
My purpose is to create relatively small but functional library, that implements commonly used data structures like smart pointers, arrays and matrices. These classes should (if it's possible) look like 'normal' pointers or arrays but also should realize simple memory managemnets with reference counting and some additional functionality.
I'm going to create lite-weight and handy interface for some scientific and engineering calculations instead of some monsters like MATLAB or etc. I'm...