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

github.com/FreeRDP/GdiTest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'GdiTest/TestDrawingArea.cs')
-rw-r--r--GdiTest/TestDrawingArea.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/GdiTest/TestDrawingArea.cs b/GdiTest/TestDrawingArea.cs
new file mode 100644
index 0000000..27e9d24
--- /dev/null
+++ b/GdiTest/TestDrawingArea.cs
@@ -0,0 +1,16 @@
+using System;
+using Cairo;
+using Gtk;
+
+namespace GdiTest
+{
+ public abstract class TestDrawingArea : DrawingArea
+ {
+ public TestDrawingArea ()
+ {
+ }
+
+ abstract public String dump();
+ }
+}
+