xref: /AOO42X/main/shell/qa/zip/testimpl/testzipimpl.hxx (revision 44d9ce519fb698708ea3288d607700b906f349e5)
1ed2f6d3bSAndrew Rist /**************************************************************
25448f169SMichael Stahl  *
3ed2f6d3bSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4ed2f6d3bSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5ed2f6d3bSAndrew Rist  * distributed with this work for additional information
6ed2f6d3bSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7ed2f6d3bSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8ed2f6d3bSAndrew Rist  * "License"); you may not use this file except in compliance
9ed2f6d3bSAndrew Rist  * with the License.  You may obtain a copy of the License at
105448f169SMichael Stahl  *
11ed2f6d3bSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
125448f169SMichael Stahl  *
13ed2f6d3bSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14ed2f6d3bSAndrew Rist  * software distributed under the License is distributed on an
15ed2f6d3bSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16ed2f6d3bSAndrew Rist  * KIND, either express or implied.  See the License for the
17ed2f6d3bSAndrew Rist  * specific language governing permissions and limitations
18ed2f6d3bSAndrew Rist  * under the License.
195448f169SMichael Stahl  *
20ed2f6d3bSAndrew Rist  *************************************************************/
21ed2f6d3bSAndrew Rist 
225448f169SMichael Stahl // MARKER(update_precomp.py): autogen include statement, do not remove
235448f169SMichael Stahl #include "precompiled_shell.hxx"
245448f169SMichael Stahl #include "internal/zipfile.hxx"
255448f169SMichael Stahl #include <string>
265448f169SMichael Stahl #include <vector>
275448f169SMichael Stahl #include <algorithm>
285448f169SMichael Stahl #include "sal/types.h"
295448f169SMichael Stahl #if defined(DLLIMPLEMENTATION)
305448f169SMichael Stahl     #define DLLPUBLIC  SAL_DLLPUBLIC_EXPORT
315448f169SMichael Stahl #else
325448f169SMichael Stahl     #define DLLPUBLIC  SAL_DLLPUBLIC_IMPORT
335448f169SMichael Stahl #endif
345448f169SMichael Stahl 
355448f169SMichael Stahl using namespace std;
365448f169SMichael Stahl 
375448f169SMichael Stahl class DLLPUBLIC TestZipImpl
385448f169SMichael Stahl {
395448f169SMichael Stahl         private:
405448f169SMichael Stahl                 ZipFile zipFile;
415448f169SMichael Stahl         public:
425448f169SMichael Stahl                 TestZipImpl(const char * documentName);
435448f169SMichael Stahl                 ~TestZipImpl();
445448f169SMichael Stahl                 bool test_directory();
455448f169SMichael Stahl                 bool test_hasContentCaseInSensitive();
465448f169SMichael Stahl                 bool test_getContent();
475448f169SMichael Stahl };
485448f169SMichael Stahl 
49*44d9ce51Smseidel /* vim: set noet sw=4 ts=4: */
50