I have problems understanding the concept of classes and member variables in C++. Given the following example:
File: Mems.h:
class Mems{
int n;
Mems();
};
File Mems.cpp:
class Mems{
Mems::Mems(){
//Do something in constructor
}
};
I do not know, where I have to put my variables if I want them to stick to the object?
When I define them in the header-file I can't access them in the cpp File and vice versa.