Github user lewismc commented on a diff in the pull request:
https://github.com/apache/any23/pull/104#discussion_r208056935
--- Diff: librdfa-rdf4j/src/main/c/RdfaParser.h ---
@@ -0,0 +1,124 @@
+/*
+ * Copyright (c) 2008 Digital Bazaar, Inc.
+ *
+ * This file is part of librdfa.
+ *
+ * librdfa is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * librdfa is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with librdfa. If not, see <http://www.gnu.org/licenses/>.
+ */
+#ifndef _RDFA_PARSER_H_
+#define _RDFA_PARSER_H_
+
+#include <string.h>
+#include <cstdio>
+#include <iostream>
+#include <rdfa.h>
+#include <rdfa_utils.h>
+#include <stdlib.h>
+
+struct rdfacontext;
+
+class Callback {
+public:
+
+ virtual ~Callback() {
+ //std::cout << "Callback::~Callback()" << std::endl;
--- End diff --
Please remove if not in use.
---