mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
15 lines
127 B
C++
15 lines
127 B
C++
|
|
class Foo
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
int Bar(int x, int y)
|
||
|
|
{
|
||
|
|
return x + y;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
Foo f;
|
||
|
|
f.Bar(1, 2);
|
||
|
|
}
|