Exemple #1
0
 /// <summary>
 /// Constructor with the specified type kind.
 /// </summary>
 /// <param name="typeKind"></param>
 protected CppType(CppTypeKind typeKind)
 {
     TypeKind = typeKind;
 }
Exemple #2
0
 protected CppTypeWithElementType(CppTypeKind typeKind, CppType elementType) : base(typeKind)
 {
     ElementType = elementType ?? throw new ArgumentNullException(nameof(elementType));
 }
Exemple #3
0
 protected CppTypeDeclaration(CppTypeKind typeKind) : base(typeKind)
 {
 }