I think you meant using and not use near the top there.
Also, you declare Get functions for your class, but then you call non-existant Set functions? And then instead of using the Get functions, you try to access the data members you explicitly declared private? Also, the Get functions are not defined, you just declared them.
You define a function the same way as always. But in this case you may want to consider whether the get functions should return a const reference (so it cannot be modified outside of the class) or a normal reference (so you can modify it outside of the class). If you want to be able to modify it outside of the class, then you should simply make the variables public. Otherwise, getter and setter functions are needed.