Solved in comments. If anyone else is struggling, the issue is that class inheritance is private by default and needs to be made explicitly public. So in this case:
class TypecodeDetail : ElementDetail
should have been
class TypecodeDetail : public ElementDetail