Currently I am working on an application in C++ which I want to be const correct. Meaning using const on parameters wherever possible, and stuff like that. However, this C++ application makes use of a C library which does not use const often. The problem I'm running into is when sending parameters to functions in the C library the parameters cannot be const so I am forced to do a cast.Currently I am working on an application in C++