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.
63 lines
819 B
63 lines
819 B
|
|
class Foo : public Bar
|
|
{
|
|
|
|
};
|
|
|
|
#define CTOR(i, _) : T(X()), \
|
|
y() \
|
|
{ }
|
|
|
|
class Foo2
|
|
: public Bar
|
|
{
|
|
|
|
};
|
|
|
|
class GLOX_API ClientBase : public Class, public OtherClass,
|
|
public ThridClass, public ForthClass
|
|
{
|
|
public:
|
|
ClientBase(const ClientBase & f){
|
|
// do something
|
|
}
|
|
};
|
|
|
|
ClientBase::ClientBase (const std::string& ns,
|
|
const std::string& ns1,
|
|
const std::string& ns2)
|
|
{
|
|
|
|
}
|
|
|
|
Foo::Foo(int bar) : someVar(bar), othervar(0)
|
|
{
|
|
}
|
|
|
|
Foo::Foo(int bar) : someVar(bar),
|
|
othervar(0)
|
|
{
|
|
}
|
|
|
|
Foo::Foo(int bar)
|
|
: someVar(bar), othervar(0)
|
|
{
|
|
}
|
|
|
|
Foo::Foo(int bar)
|
|
: someVar(bar), othervar(0)
|
|
{
|
|
}
|
|
|
|
Foo::Foo(int bar)
|
|
: someVar(bar),
|
|
othervar(0)
|
|
{
|
|
}
|
|
|
|
Foo::Foo(int bar)
|
|
: someVar(bar),
|
|
othervar(0)
|
|
{
|
|
}
|