Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorRenderingWpf/Wpf/WpfFontFamilyVisitor.cs @ 12762

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

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

File size: 438 bytes
Line 
1using System;
2using System.Windows;
3using System.Windows.Media;
4using System.Collections.Generic;
5
6namespace 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.