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

TestDrawingArea.cs « GdiTest - github.com/FreeRDP/GdiTest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecc5d6189c07e3afdab2fa7059957dfc3582aa08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using Cairo;
using Gtk;

namespace GdiTest
{
	public abstract class TestDrawingArea : DrawingArea
	{
		public TestDrawingArea ()
		{
		}
		
		abstract public String dump();
		abstract public String getDumpText();
	}
}