Skip to content

Instantly share code, notes, and snippets.

@cloderic
Created June 8, 2012 13:48
Show Gist options
  • Save cloderic/2895696 to your computer and use it in GitHub Desktop.
Save cloderic/2895696 to your computer and use it in GitHub Desktop.
get/set/touch
class A
{
public:
const B& getB() const
{
return _myB;
}
void setB(const B& newB) const
{
_myB = newB;
}
B& touchB()
{
return _myB;
}
private:
B _myB;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment