1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 #ifndef _SOLTOOLS_TESTSHL_TSTMGR_HXX__ 28 #define _SOLTOOLS_TESTSHL_TSTMGR_HXX__ 29 30 #include <sal/types.h> 31 32 #include <vector> 33 34 using namespace std; 35 36 // <namespace_tstutl> 37 namespace tstutl { 38 39 // <class_tstMgr> 40 class tstMgr { 41 42 // <private_members> 43 struct tstMgr_Impl; 44 tstMgr_Impl* pImpl; 45 // </private_members> 46 47 // <private_methods> 48 void cleanup(); 49 // </private_methods> 50 51 public: 52 53 // <dtor> 54 ~tstMgr(){ 55 cleanup(); 56 } // </dtor> 57 58 59 // <public_methods> 60 sal_Bool initialize( sal_Char* moduleName, sal_Bool boom = sal_False ); 61 sal_Bool test_Entry( sal_Char* entry, sal_Char* logName = 0 ); 62 sal_Bool test_Entries( vector< sal_Char* > entries, sal_Char* logName = 0 ); 63 sal_Bool test_EntriesFromFile( sal_Char* fName, sal_Char* logName = 0 ); 64 // </public_methods> 65 66 }; // </class_tstMgr> 67 68 } // </namespace_tstutl> 69 70 #endif 71 72 73 74