Chart.h
class Chart {
public:
void setTitle( const std::string title ) {
this->title = title;
}
private:
std::string title;
};
Downloads: Visual Studio 2012, Visual Studio 2013+, Unix, XCode, Other.
class Chart {
public:
void setTitle( const std::string title ) {
this->title = title;
}
private:
std::string title;
};