diff --git a/stoc/test/tdmanager/types.idl b/stoc/test/tdmanager/types.idl index f3b723e2ec64..d90d478dfc91 100644 --- a/stoc/test/tdmanager/types.idl +++ b/stoc/test/tdmanager/types.idl @@ -2,9 +2,9 @@ * * $RCSfile: types.idl,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: obo $ $Date: 2004-06-04 02:36:16 $ + * last change: $Author: obo $ $Date: 2004-08-12 12:20:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,8 +59,21 @@ * ************************************************************************/ +#include + module test { module tdmanager { struct Struct { U s; }; +published interface XAnother { + void f(); +}; + +service MyService { + [optional] interface XAnother; + [property, optional] boolean b; +}; + +const long CCC = 5; + }; };