Represent a C++ constructor.
The construction of CppCtor is simplified in the example.
1 class A { 2 public: 3 A(); // CppCtor("A", null, Public); 4 A(int x); // CppCtor("A", ["int x"], Public); 5 };
See Implementation
Represent a C++ constructor.
The construction of CppCtor is simplified in the example.