C++ - Distributing different headers than development
- by Ben
I was curious about doing this in C++:
Lets say I have a small library that I distribute to my users. I give my clients both the binary and the associated header files that they need. For example, lets assume the following header is used in development:
#include <string>
ClassA
{
public:
bool setString(const std::string &…