I added a new class to a project,I just want to create an instance of MobileNode class but It is an abstract class so I wrote MyNode1 class that derived from MobileNode class to create an instance, but I encounter this error:
error: invalid use of incomplete type ‘class MobileNode’
class MyNode1 : MobileNode
==============================================================
this is the class code: