Last change
on this file since 13777 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
528 bytes
|
Rev | Line | |
---|
[12762] | 1 | using System;
|
---|
| 2 | using System.Linq;
|
---|
| 3 | using System.Text;
|
---|
| 4 | using System.Collections.Generic;
|
---|
| 5 |
|
---|
| 6 | using System.Windows;
|
---|
| 7 | using System.Windows.Media;
|
---|
| 8 | using System.Windows.Media.Imaging;
|
---|
| 9 |
|
---|
| 10 | using SharpVectors.Dom.Svg;
|
---|
| 11 |
|
---|
| 12 | namespace 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.