1ca5ec200SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3ca5ec200SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4ca5ec200SAndrew Rist * or more contributor license agreements. See the NOTICE file 5ca5ec200SAndrew Rist * distributed with this work for additional information 6ca5ec200SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7ca5ec200SAndrew Rist * to you under the Apache License, Version 2.0 (the 8ca5ec200SAndrew Rist * "License"); you may not use this file except in compliance 9ca5ec200SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11ca5ec200SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13ca5ec200SAndrew Rist * Unless required by applicable law or agreed to in writing, 14ca5ec200SAndrew Rist * software distributed under the License is distributed on an 15ca5ec200SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16ca5ec200SAndrew Rist * KIND, either express or implied. See the License for the 17ca5ec200SAndrew Rist * specific language governing permissions and limitations 18ca5ec200SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20ca5ec200SAndrew Rist *************************************************************/ 21ca5ec200SAndrew Rist 22ca5ec200SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #include "oox/token/propertynames.hxx" 25cdf0e10cSrcweir 26cdf0e10cSrcweir namespace oox { 27cdf0e10cSrcweir 28cdf0e10cSrcweir // ============================================================================ 29cdf0e10cSrcweir PropertyNameVector()30cdf0e10cSrcweirPropertyNameVector::PropertyNameVector() 31cdf0e10cSrcweir { 32cdf0e10cSrcweir static const sal_Char* sppcPropertyNames[] = 33cdf0e10cSrcweir { 34cdf0e10cSrcweir // include auto-generated C array with property names as C strings 35*b63233d8Sdamjan #include <token/propertynames.inc> 36cdf0e10cSrcweir }; 37cdf0e10cSrcweir 38cdf0e10cSrcweir size_t nArraySize = (sizeof( sppcPropertyNames ) / sizeof( *sppcPropertyNames )) - 1; 39cdf0e10cSrcweir reserve( nArraySize ); 40cdf0e10cSrcweir for( size_t nIndex = 0; nIndex < nArraySize; ++nIndex ) 41cdf0e10cSrcweir push_back( ::rtl::OUString::createFromAscii( sppcPropertyNames[ nIndex ] ) ); 42cdf0e10cSrcweir } 43cdf0e10cSrcweir 44cdf0e10cSrcweir // ============================================================================ 45cdf0e10cSrcweir 46cdf0e10cSrcweir } // namespace oox 47