A class from a library that takes string needs to be initialized in my own class. Trying to do something like this, but gives me the error: expected identifier before string constant
Class MyClass{
public:
ClassA obj("some string");
}
How can I properly do this?