mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
15 lines
143 B
C++
15 lines
143 B
C++
struct A {
|
|
int x;
|
|
};
|
|
|
|
struct B : A {
|
|
float y;
|
|
float foo();
|
|
};
|
|
|
|
struct C {
|
|
C(int i = 10);
|
|
C(const C&);
|
|
C &operator=(C&);
|
|
~C();
|
|
};
|