File: Packaging\XpsImage.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 ReachImage class.  This class inherits from
        ReachResource and controls image specific aspects of
        a resource added to a fixed page.
                                      
                                                                             
   Brian Adleberg (brianad ) 12-July-2005 Reach -> Xps
---*/
 
using System;
using System.IO.Packaging;
using System.Windows.Media;
 
namespace System.Windows.Xps.Packaging
{
    /// <summary>
    ///
    /// </summary>
    public class XpsImage : XpsResource
    {
        #region Constructors
 
        internal
        XpsImage(
            XpsManager    xpsManager,
            INode           parent,
            PackagePart     part
            )
            : base(xpsManager, parent, part)
        {
        }
 
        #endregion Constructors
    }
}