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: 27e9d24795bb956c87cd99593df65ffcb2f78070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using Cairo;
using Gtk;

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