示例#1
0
 public virtual string VisitVectorType(VectorType vectorType, TypeQualifiers quals)
 {
     // an incomplete implementation but we'd hardly need anything better
     return("__attribute__()");
 }
示例#2
0
文件: Type.cs 项目: sbertout/CppSharp
 public VectorType(VectorType type)
     : base(type)
 {
 }
示例#3
0
 public bool VisitVectorType(VectorType vectorType, TypeQualifiers quals)
 {
     return(true);
 }