xref: /trunk/main/svl/inc/svl/filenotation.hxx (revision 914d351e5f5b84e4342a86d6ab8d4aca7308b9bd)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef SVTOOLS_FILENOTATION_HXX
25 #define SVTOOLS_FILENOTATION_HXX
26 
27 #include "svl/svldllapi.h"
28 #include <rtl/ustring.hxx>
29 
30 //.........................................................................
31 namespace svt
32 {
33 //.........................................................................
34 
35     //=====================================================================
36     //= OFileNotation
37     //=====================================================================
38     class SVL_DLLPUBLIC OFileNotation
39     {
40     protected:
41         ::rtl::OUString     m_sSystem;
42         ::rtl::OUString     m_sFileURL;
43 
44     public:
45         enum NOTATION
46         {
47             N_SYSTEM,
48             N_URL
49         };
50 
51         OFileNotation( const ::rtl::OUString& _rUrlOrPath );
52         OFileNotation( const ::rtl::OUString& _rUrlOrPath, NOTATION _eInputNotation );
53 
54         ::rtl::OUString get(NOTATION _eOutputNotation);
55 
56     private:
57         SVL_DLLPRIVATE void construct( const ::rtl::OUString& _rUrlOrPath );
58         SVL_DLLPRIVATE bool    implInitWithSystemNotation( const ::rtl::OUString& _rSystemPath );
59         SVL_DLLPRIVATE bool    implInitWithURLNotation( const ::rtl::OUString& _rURL );
60     };
61 
62 //.........................................................................
63 }   // namespace svt
64 //.........................................................................
65 
66 #endif // SVTOOLS_FILENOTATION_HXX
67