You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
252 B
9 lines
252 B
4 years ago
|
class A
|
||
|
{
|
||
|
public:
|
||
|
virtual void f11111111( int a, int b, int c ) = 0;
|
||
|
virtual void f2( int* ptr2 = nullptr ) = 0;
|
||
|
virtual void f2333( int* ptr3 = 3 ) = delete;
|
||
|
void f244444( int* ptr4 = 4 ) = default;
|
||
|
};
|