I would like to inherit from a class with the const specifier like this:
const
class Property { int get() const; void set(int a); }; class Co
I would like to inherit from a class with the const specifier"
However much you want to is irrelevant. You cannot. That is not valid C++.
Can I somehow use the const keyword for inheritance?"
No.