本文整理汇总了C#中CppSharp类的典型用法代码示例。如果您正苦于以下问题:C# CppSharp类的具体用法?C# CppSharp怎么用?C# CppSharp使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CppSharp类属于命名空间,在下文中一共展示了CppSharp类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateTypeWrapper
public static ITypeWrapper CreateTypeWrapper(CppSharp.AST.Type rawType)
{
if (rawType is CppSharp.AST.FunctionType)
{
return new FunctionTypeWrapper(rawType);
}
else if (rawType is CppSharp.AST.BuiltinType)
{
return new BuildinTypeWrapper(rawType);
}
else if (rawType is CppSharp.AST.DecayedType)
{
return new DecayedTypeWrapper(rawType);
}
else if (rawType is CppSharp.AST.TagType)
{
return new TagedTypeWrapper(rawType);
}
else if (rawType is CppSharp.AST.TypedefType)
{
return new TypedefTypeWrapper(rawType);
}
else if (rawType is CppSharp.AST.PointerType)
{
return new PointerTypeWrapper(rawType);
}
else if (rawType is CppSharp.AST.ArrayType)
{
return new ArrayTypeWrapper(rawType);
}
else
{
return new UnknowTypeWrapper(rawType);
}
}
示例2: SourceLocation
public SourceLocation(CppSharp.Parser.SourceLocation _0)
: this()
{
var __arg0 = _0.__Instance;
var arg0 = new global::System.IntPtr(&__arg0);
fixed (Internal* __instancePtr = &__instance)
{
Internal.cctor_2(new global::System.IntPtr(__instancePtr), arg0);
}
}
示例3: addArguments
public void addArguments(CppSharp.Parser.AST.BlockCommandComment.Argument s)
{
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance;
Internal.addArguments_0(__Instance, arg0);
}
示例4: addParameters
public void addParameters(CppSharp.Parser.AST.Parameter s)
{
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance;
Internal.addParameters_0(__Instance, arg0);
}
示例5: ctor_1
internal static extern void ctor_1(global::System.IntPtr instance, CppSharp.Parser.AST.CommentKind Kind);
示例6: BlockContentComment
public BlockContentComment(CppSharp.Parser.AST.BlockContentComment _0)
: this((Internal*) null)
{
__Instance = Marshal.AllocHGlobal(4);
__ownsNativeInstance = true;
*((BlockContentComment.Internal*) __Instance) = *((BlockContentComment.Internal*) _0.__Instance);
NativeToManagedMap[__Instance] = this;
}
示例7: Comment
public Comment(CppSharp.Parser.AST.CommentKind kind)
{
__Instance = Marshal.AllocHGlobal(4);
__ownsNativeInstance = true;
var arg0 = kind;
Internal.ctor_0(__Instance, arg0);
NativeToManagedMap[__Instance] = this;
}
示例8: NativeLibrary
public NativeLibrary(CppSharp.Parser.AST.NativeLibrary _0)
{
__Instance = Marshal.AllocHGlobal(80);
__ownsNativeInstance = true;
var arg0 = ReferenceEquals(_0, null) ? global::System.IntPtr.Zero : _0.__Instance;
Internal.cctor_2(__Instance, arg0);
NativeToManagedMap[__Instance] = this;
}
示例9: addItems
public void addItems(CppSharp.Parser.AST.Enumeration.Item s)
{
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance;
Internal.addItems_0(__Instance, arg0);
}
示例10: QualifiedType
public QualifiedType(CppSharp.Parser.AST.QualifiedType _0)
{
__Instance = Marshal.AllocHGlobal(16);
__ownsNativeInstance = true;
*((QualifiedType.Internal*) __Instance) = *((QualifiedType.Internal*) _0.__Instance);
NativeToManagedMap[__Instance] = this;
}
示例11: TypeQualifiers
public TypeQualifiers(CppSharp.Parser.AST.TypeQualifiers _0)
{
__Instance = Marshal.AllocHGlobal(3);
__ownsNativeInstance = true;
*((TypeQualifiers.Internal*) __Instance) = *((TypeQualifiers.Internal*) _0.__Instance);
NativeToManagedMap[__Instance] = this;
}
示例12: addPreprocessedEntities
public void addPreprocessedEntities(CppSharp.Parser.AST.PreprocessedEntity s)
{
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance;
Internal.addPreprocessedEntities_0(__Instance, arg0);
}
示例13: Declaration
public Declaration(CppSharp.Parser.AST.DeclarationKind kind)
{
__Instance = Marshal.AllocHGlobal(168);
__ownsNativeInstance = true;
var arg0 = kind;
Internal.ctor_0(__Instance, arg0);
NativeToManagedMap[__Instance] = this;
}
示例14: addComponents
public void addComponents(CppSharp.Parser.AST.VTableComponent s)
{
var arg0 = ReferenceEquals(s, null) ? global::System.IntPtr.Zero : s.__Instance;
Internal.addComponents_0(__Instance, arg0);
}
示例15: VTableComponent
public VTableComponent(CppSharp.Parser.AST.VTableComponent _0)
{
__Instance = Marshal.AllocHGlobal(16);
__ownsNativeInstance = true;
*((VTableComponent.Internal*) __Instance) = *((VTableComponent.Internal*) _0.__Instance);
NativeToManagedMap[__Instance] = this;
}