Last change
on this file since 13348 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
438 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Windows;
|
---|
3 | using System.Windows.Media;
|
---|
4 | using System.Collections.Generic;
|
---|
5 |
|
---|
6 | namespace SharpVectors.Renderers.Wpf
|
---|
7 | {
|
---|
8 | public abstract class WpfFontFamilyVisitor : DependencyObject
|
---|
9 | {
|
---|
10 | protected WpfFontFamilyVisitor()
|
---|
11 | {
|
---|
12 | }
|
---|
13 |
|
---|
14 | public abstract WpfFontFamilyInfo Visit(string fontName, WpfFontFamilyInfo familyInfo,
|
---|
15 | WpfDrawingContext context);
|
---|
16 | }
|
---|
17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.