コード例 #1
0
ファイル: CppTypePrinter.cs プロジェクト: MyOwnClone/CppSharp
 public virtual string VisitProperty(Property property)
 {
     return(VisitDeclaration(property));
 }
コード例 #2
0
ファイル: ClassExtensions.cs プロジェクト: wushian/CppSharp
        public static bool HasNonAbstractBasePropertyInPrimaryBase(this Class @class, Property property)
        {
            var baseProperty = @class.GetBaseProperty(property, true, true);

            return(baseProperty != null && !baseProperty.IsPure &&
                   !((Class)baseProperty.OriginalNamespace).IsInterface);
        }