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