Commit cf346155 authored by Pablo Toharia's avatar Pablo Toharia
Browse files

Added functionallity to myclass methods.

parent e7f54cb6
......@@ -10,15 +10,19 @@ namespace mylib
}
float MyClass::getAttr1( void ) const
{
return _attr1;
}
int MyClass::getAttr2( void ) const
{
return _attr2;
}
void MyClass::setAttr1( float attr1 )
{
_attr1 = attr1;
}
void MyClass::setAttr2( int attr2 )
{
_attr2 = attr2;
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment