summaryrefslogtreecommitdiff
path: root/src/tests/efl_mono/dummy_test_iface.eo
blob: a7a761fef7230bc3d3ee296e114cd093e713ad97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
interface Dummy.Test_Iface
{
   methods {
      emit_nonconflicted {
      }
      @property iface_prop {
         get {}
         set {}
         values {
            data: int;
         }
      }

      method_protected @protected @const {
         params {
            @in x: int;
         }
         return: int;
      }

      call_method_protected @const {
         params {
            @in x: int;
         }
         return: int;
      }

   }
   events {
      nonconflicted: void;
   }
}