diff options
author | jan iversen <jani@documentfoundation.org> | 2016-03-19 16:57:19 +0100 |
---|---|---|
committer | jan iversen <jani@documentfoundation.org> | 2016-03-22 16:32:19 +0100 |
commit | f7f97dadcd33ed191ef04436fe630821c2330e3d (patch) | |
tree | ae0189700a5a176bfd341d79134bb77b06d54ad6 /l10ntools/inc | |
parent | b3443e16c75704e547abd57e91156b76a5e5d218 (diff) |
update genlang, activated lex calls.
All lex files no longer have a special namespace, instead
yylex --> <foo>lex
and therefore unique for the linker.
Also corrected command line argument handler.
Change-Id: Idfdec97bd43f3be8d2b217b9aac1bd74b202dc93
Diffstat (limited to 'l10ntools/inc')
-rw-r--r-- | l10ntools/inc/gConvDB.hxx | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/l10ntools/inc/gConvDB.hxx b/l10ntools/inc/gConvDB.hxx deleted file mode 100644 index 23151836779d..000000000000 --- a/l10ntools/inc/gConvDB.hxx +++ /dev/null @@ -1,39 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you 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 . - */ -#ifndef GCONDN_HXX -#define GCONDN_HXX -#include "gConv.hxx" - - - -class convert_db : public convert_gen -{ - public: - convert_db(l10nMem& crMemory); - ~convert_db(); - - private: - static const int NUMFIELD = 16; - std::string msFields[NUMFIELD]; - int miSize; - - void execute() override; - bool collectLine(); -}; -#endif |