1*a440ba41SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3*a440ba41SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*a440ba41SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*a440ba41SAndrew Rist * distributed with this work for additional information 6*a440ba41SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*a440ba41SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*a440ba41SAndrew Rist * "License"); you may not use this file except in compliance 9*a440ba41SAndrew Rist * with the License. You may obtain a copy of the License at 10*a440ba41SAndrew Rist * 11*a440ba41SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*a440ba41SAndrew Rist * 13*a440ba41SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*a440ba41SAndrew Rist * software distributed under the License is distributed on an 15*a440ba41SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*a440ba41SAndrew Rist * KIND, either express or implied. See the License for the 17*a440ba41SAndrew Rist * specific language governing permissions and limitations 18*a440ba41SAndrew Rist * under the License. 19*a440ba41SAndrew Rist * 20*a440ba41SAndrew Rist *************************************************************/ 21*a440ba41SAndrew Rist 22*a440ba41SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir#ifndef _TEST_CPPUTEST_IDL_ 25cdf0e10cSrcweir#define _TEST_CPPUTEST_IDL_ 26cdf0e10cSrcweir 27cdf0e10cSrcweir#include <com/sun/star/uno/XInterface.idl> 28cdf0e10cSrcweir#include <com/sun/star/uno/TypeClass.idl> 29cdf0e10cSrcweir 30cdf0e10cSrcweirmodule test 31cdf0e10cSrcweir{ 32cdf0e10cSrcweir 33cdf0e10cSrcweirinterface A : com::sun::star::uno::XInterface 34cdf0e10cSrcweir{ 35cdf0e10cSrcweir string a(); 36cdf0e10cSrcweir}; 37cdf0e10cSrcweir 38cdf0e10cSrcweirinterface BA : A 39cdf0e10cSrcweir{ 40cdf0e10cSrcweir string ba(); 41cdf0e10cSrcweir}; 42cdf0e10cSrcweir 43cdf0e10cSrcweirinterface CA : A 44cdf0e10cSrcweir{ 45cdf0e10cSrcweir string ca(); 46cdf0e10cSrcweir}; 47cdf0e10cSrcweir 48cdf0e10cSrcweirinterface DBA : BA 49cdf0e10cSrcweir{ 50cdf0e10cSrcweir string dba(); 51cdf0e10cSrcweir}; 52cdf0e10cSrcweir 53cdf0e10cSrcweirinterface E : com::sun::star::uno::XInterface 54cdf0e10cSrcweir{ 55cdf0e10cSrcweir string e(); 56cdf0e10cSrcweir}; 57cdf0e10cSrcweir 58cdf0e10cSrcweirinterface FE : E 59cdf0e10cSrcweir{ 60cdf0e10cSrcweir string fe(); 61cdf0e10cSrcweir}; 62cdf0e10cSrcweir 63cdf0e10cSrcweirinterface G : com::sun::star::uno::XInterface 64cdf0e10cSrcweir{ 65cdf0e10cSrcweir string g(); 66cdf0e10cSrcweir string a(); 67cdf0e10cSrcweir}; 68cdf0e10cSrcweir 69cdf0e10cSrcweirinterface H : com::sun::star::uno::XInterface 70cdf0e10cSrcweir{ 71cdf0e10cSrcweir string h(); 72cdf0e10cSrcweir}; 73cdf0e10cSrcweirinterface I : com::sun::star::uno::XInterface 74cdf0e10cSrcweir{ 75cdf0e10cSrcweir string i(); 76cdf0e10cSrcweir}; 77cdf0e10cSrcweir 78cdf0e10cSrcweir}; //module test 79cdf0e10cSrcweir 80cdf0e10cSrcweir#endif 81