xref: /aoo41x/main/rsc/source/misc/rsclst.cxx (revision 477794c1)
1*477794c1SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*477794c1SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*477794c1SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*477794c1SAndrew Rist  * distributed with this work for additional information
6*477794c1SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*477794c1SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*477794c1SAndrew Rist  * "License"); you may not use this file except in compliance
9*477794c1SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*477794c1SAndrew Rist  *
11*477794c1SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*477794c1SAndrew Rist  *
13*477794c1SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*477794c1SAndrew Rist  * software distributed under the License is distributed on an
15*477794c1SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*477794c1SAndrew Rist  * KIND, either express or implied.  See the License for the
17*477794c1SAndrew Rist  * specific language governing permissions and limitations
18*477794c1SAndrew Rist  * under the License.
19*477794c1SAndrew Rist  *
20*477794c1SAndrew Rist  *************************************************************/
21*477794c1SAndrew Rist 
22*477794c1SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_rsc.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "rsclst.hxx"
28cdf0e10cSrcweir 
REResourceList()29cdf0e10cSrcweir REResourceList :: REResourceList()
30cdf0e10cSrcweir {
31cdf0e10cSrcweir 	bVisible  = sal_False;
32cdf0e10cSrcweir 	pParent   = NULL;
33cdf0e10cSrcweir }
34cdf0e10cSrcweir 
REResourceList(REResourceList * pParentList,ByteString & rClassName,const RscId & rResourceID,sal_Bool bVis)35cdf0e10cSrcweir REResourceList :: REResourceList( REResourceList* pParentList,
36cdf0e10cSrcweir 								  ByteString& rClassName,
37cdf0e10cSrcweir 								  const RscId & rResourceID, sal_Bool bVis )
38cdf0e10cSrcweir {
39cdf0e10cSrcweir 	pParent    = pParentList;
40cdf0e10cSrcweir 	aClassName = rClassName;
41cdf0e10cSrcweir 	aRscId	   = rResourceID;
42cdf0e10cSrcweir 	bVisible   = bVis;
43cdf0e10cSrcweir }
44cdf0e10cSrcweir 
~REResourceList()45cdf0e10cSrcweir REResourceList :: ~REResourceList()
46cdf0e10cSrcweir {
47cdf0e10cSrcweir }
48