Adding config file for sharing.
[iot2.git] / localconfig / iotpolicy / development / callbackpolicy.pol
1 public interface CallBackInterface {
2
3     public int printInt();
4     public void setInt(int _i);
5         public void needCallback(TestClassInterface tc);
6
7         capability CallBack {
8                 description = "The quick brown fox jumps over the smart dog";
9                 description = "Another description";
10                 method = "printInt()";
11                 method = "setInt(int _i)";
12                 method = "needCallback(TestClassInterface tc)";
13         }
14 }
15
16