Namespace std not recognized in public API.h for shared library[quote]double free or corruption [/quote] You could be trying to free memory after it has already b...
Namespace std not recognized in public API.h for shared libraryFrom the first error it looks like the compiler doesn't know about class Base. Where is this class d...
Namespace std not recognized in public API.h for shared library[quote]Compiling libBasexTest.cpp gives error messages all stemming from errors in libBasexCpp.h[/qu...
Namespace std not recognized in public API.h for shared libraryDon't have using namespace .... (eg using namespace std;) in a header file. Always explicitly specif...
how to read a single character as with getchar but in C++?[quote]in C one could read a single character from the keyboard with functions like getc() or getcha...