/* * Copyright 1999-2000,2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * $Id: Xlat_MsgCatalog.hpp 191054 2005-06-17 02:56:35Z jberry $ */ class MsgCatFormatter : public XlatFormatter { public : // ----------------------------------------------------------------------- // Public Constructors and Destructor // ----------------------------------------------------------------------- MsgCatFormatter(); virtual ~MsgCatFormatter(); // ----------------------------------------------------------------------- // Implementation of the formatter interface // ----------------------------------------------------------------------- virtual void endDomain ( const XMLCh* const domainName , const unsigned int msgCount ); virtual void endMsgType ( const MsgTypes type ); virtual void endOutput(); virtual void nextMessage ( const XMLCh* const msgText , const XMLCh* const msgId , const unsigned int messageId , const unsigned int curId ); virtual void startDomain ( const XMLCh* const domainName , const XMLCh* const nameSpace ); virtual void startMsgType ( const MsgTypes type ); virtual void startOutput ( const XMLCh* const locale , const XMLCh* const outPath ); private : // ----------------------------------------------------------------------- // Unimplemented constructors and operators // ----------------------------------------------------------------------- MsgCatFormatter(const MsgCatFormatter&); void operator=(const MsgCatFormatter&); // ----------------------------------------------------------------------- // Private data members // // fOutFl // This is the current output file for the message catalog contents. // // fOutHpp // This is a separate header into which we just generate a couple // of constants to make the message catalog loader independent of // the order of the section numbers. // // fSeqId // This is the number that we use to assign the sequence ids to // each section we output to the message catalog. // // fTranscoder // This is our transcoder. We transcode to the local code page in // order to output Unicode based text to the message catalog. // ----------------------------------------------------------------------- FILE* fOutFl; FILE* fOutHpp; unsigned int fSeqId; XMLLCPTranscoder* fTranscoder; };