Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PolylineToDrawingArea.cs « GdiTest - github.com/FreeRDP/GdiTest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4182717bc9d11980f2680edda29458afa923b71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
namespace GdiTest
{
	public class PolylineToDrawingArea : TestDrawingArea
	{
		private String dumpText;
		
		public PolylineToDrawingArea ()
		{
			dumpText = "";
		}
		
		public override String getDumpText()
		{
			return dumpText;
		}
	}
}