summaryrefslogtreecommitdiff
path: root/src/tests/efl_mono/dummy_constructible_object.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/efl_mono/dummy_constructible_object.eo')
-rw-r--r--src/tests/efl_mono/dummy_constructible_object.eo47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/tests/efl_mono/dummy_constructible_object.eo b/src/tests/efl_mono/dummy_constructible_object.eo
new file mode 100644
index 0000000000..f8ae944e6c
--- /dev/null
+++ b/src/tests/efl_mono/dummy_constructible_object.eo
@@ -0,0 +1,47 @@
+class Dummy.Constructible_Object extends Efl.Object {
+ methods {
+ construct_type_and_store {
+ params {
+ @in type: const(Efl.Class);
+ }
+ return: Efl.Object;
+ }
+ increment_default_construction_count {
+ }
+ increment_special_construction_count {
+ }
+ @property native_construction_count {
+ get {
+ }
+ values {
+ value: int;
+ }
+ }
+ @property default_construction_count {
+ get {
+ }
+ values {
+ value: int;
+ }
+ }
+ @property special_construction_count {
+ get {
+ }
+ values {
+ value: int;
+ }
+ }
+ @property internal_object {
+ get {
+ }
+ values {
+ value: Efl.Object;
+ }
+ }
+ }
+ implements {
+ Efl.Object.constructor;
+ Efl.Object.destructor;
+ }
+}
+