Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorRenderingWpf/Wpf/WpfEmbeddedImageVisitor.cs @ 13949

Last change on this file since 13949 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 528 bytes
Line 
1using System;
2using System.Linq;
3using System.Text;
4using System.Collections.Generic;
5
6using System.Windows;
7using System.Windows.Media;
8using System.Windows.Media.Imaging;
9
10using SharpVectors.Dom.Svg;
11
12namespace SharpVectors.Renderers.Wpf
13{
14    public abstract class WpfEmbeddedImageVisitor : DependencyObject
15    {
16        protected WpfEmbeddedImageVisitor()
17        {   
18        }
19
20        public abstract BitmapSource Visit(SvgImageElement element,
21            WpfDrawingContext context);
22    }
23}
Note: See TracBrowser for help on using the repository browser.