#include Object.hpp
void Circle::doSomething(inputs){
Object::type() circle = OT_CIRCLE // THIS IS THE LINE THAT DOESNT WORK I get different errors depending on if I use OT_CIRCLE OR 2
/* if that line worked I would do something like
if ( object.type() != OT_CIRCLE) {
do something
}
else{
do something else
}
} */