コード例 #1
0
ファイル: ClassExtensions.cs プロジェクト: brucezcg/CppSharp
        public static bool HasNonAbstractBasePropertyInPrimaryBase(this Class @class, Property property)
        {
            var baseProperty = @class.GetBaseProperty(property, true);

            return(baseProperty != null && !baseProperty.IsPure &&
                   !((Class)baseProperty.OriginalNamespace).IsInterface);
        }
コード例 #2
0
ファイル: ClassExtensions.cs プロジェクト: CSRedRat/CppSharp
        public static bool HasNonAbstractBaseProperty(this Class @class, Property property)
        {
            var baseProperty = @class.GetBaseProperty(property, true, true);

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