A sample code syntax highlighter page
class Foo {
public:
Foo()
: _x(0)
, _y(0)
{
}
~Foo() = default;
private:
unsigned _x;
unsigned _y;
};
A sample code syntax highlighter page
class Foo {
public:
Foo()
: _x(0)
, _y(0)
{
}
~Foo() = default;
private:
unsigned _x;
unsigned _y;
};
Be First to Comment