CppCtor

Represent a C++ constructor.

The construction of CppCtor is simplified in the example.

struct CppCtor {
Nullable!USRType usr;
}

Examples

1 class A {
2 public:
3   A();      // CppCtor("A", null, Public);
4   A(int x); // CppCtor("A", ["int x"], Public);
5 };

Meta