File: Packaging\XpsStructure.cs
Web Access
Project: src\src\Microsoft.DotNet.Wpf\src\ReachFramework\ReachFramework.csproj (ReachFramework)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
/*++
                                                                                                                                             
                                                                              
    Abstract:
        This file contains the definition  and implementation
        for the XpsFont class.  This class inherits from
        XpsResource and controls font specific aspects of
        a resource added to a fixed page.
                                                    
                                                                             
--*/
using System;
using System.IO.Packaging;
 
namespace System.Windows.Xps.Packaging
{
    /// <summary>
    ///
    /// </summary>
    public class XpsStructure : XpsResource
    {
        #region Constructors
 
        internal
        XpsStructure(
            XpsManager xpsManager,
            INode parent,
            PackagePart part
            )
            : base(xpsManager, parent, part)
        {
        }
 
        #endregion Constructors
    }
}