summaryrefslogtreecommitdiff
path: root/hwpfilter/source/lexer.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-14 13:02:26 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-14 13:02:26 +0200
commit29a96480b09f63bfbffb799729cf09d3693c0054 (patch)
tree3a36a3942a6ce94f3c24a9c96fc9457f8486a9eb /hwpfilter/source/lexer.hxx
parent712d2793ec8e54e1d74655ccb4ea5e2b8cc9ca72 (diff)
Clean up function declarations and some unused functions
Change-Id: I7eba9260b33e0b92ed997bf624d866644a091f29
Diffstat (limited to 'hwpfilter/source/lexer.hxx')
-rw-r--r--hwpfilter/source/lexer.hxx29
1 files changed, 29 insertions, 0 deletions
diff --git a/hwpfilter/source/lexer.hxx b/hwpfilter/source/lexer.hxx
new file mode 100644
index 000000000000..333b117641db
--- /dev/null
+++ b/hwpfilter/source/lexer.hxx
@@ -0,0 +1,29 @@
+/* -*- 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 INCLUDED_HWPFILTER_SOURCE_LEXER_HXX
+#define INCLUDED_HWPFILTER_SOURCE_LEXER_HXX
+
+void initFlex(char const * s);
+
+int yylex();
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */