Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef INCLUDED_BASIC_SOURCE_SBX_SBXRES_HXX
21 : #define INCLUDED_BASIC_SOURCE_SBX_SBXRES_HXX
22 :
23 : #include <rtl/ustring.hxx>
24 :
25 : // Currently there are no resources provided in the SVTOOLS-Project.
26 : // Because it is non-critical resources (BASIC-Keywords),
27 : // we can work with dummies.
28 :
29 : #define STRING_TYPES 0
30 : #define STRING_ANY 13
31 : #define STRING_AS 32
32 : #define STRING_OPTIONAL 33
33 : #define STRING_BYREF 34
34 :
35 : #define STRING_NAMEPROP 35
36 : #define STRING_PARENTPROP 36
37 : #define STRING_COUNTPROP 38
38 : #define STRING_ADDMETH 39
39 : #define STRING_ITEMMETH 40
40 : #define STRING_REMOVEMETH 41
41 :
42 : #define STRING_ERRORMSG 42
43 : #define STRING_FALSE 43
44 : #define STRING_TRUE 44
45 :
46 : #define SBXRES_MAX 44
47 :
48 110 : class SbxRes : public OUString
49 : {
50 : public:
51 : explicit SbxRes( sal_uInt16 );
52 : };
53 :
54 : const char* GetSbxRes( sal_uInt16 );
55 :
56 :
57 : #endif
58 :
59 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|