Hello i`m tring to define string as a component of a class of my own in ehader file is it possible? Example:
Foo.h
#include <string>
class Foobar{
int a;
string foo;
}
Because somehow in main i can declare a string cvariable but in header it dosent recognize my string type.
stdand you missed a semicolon on your class. – chris Apr 30 '12 at 17:09