7 lines
82 B
C++
7 lines
82 B
C++
|
class ABSTRACT_CLASS {
|
||
|
public:
|
||
|
ABSTRACT_CLASS();
|
||
|
virtual int function();
|
||
|
};
|
||
|
|