summaryrefslogtreecommitdiff
path: root/libvaladoc
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2019-04-01 21:21:19 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2019-04-01 21:26:43 +0200
commitddf82bd61b36e10c3c72ee2fd87d48f3a0f81f42 (patch)
tree5ee5bc8e09cafcba658730b0c417611d3355bf2b /libvaladoc
parent74952b2d9d3b8926b73e67b04e148a78804b1f6a (diff)
downloadvala-ddf82bd61b36e10c3c72ee2fd87d48f3a0f81f42.tar.gz
valadoc: Drop obsolete "Driver" API
Diffstat (limited to 'libvaladoc')
-rw-r--r--libvaladoc/Makefile.am1
-rw-r--r--libvaladoc/api/driver.vala42
2 files changed, 0 insertions, 43 deletions
diff --git a/libvaladoc/Makefile.am b/libvaladoc/Makefile.am
index 7456fb836..73fd966c4 100644
--- a/libvaladoc/Makefile.am
+++ b/libvaladoc/Makefile.am
@@ -88,7 +88,6 @@ libvaladoc_la_VALASOURCES = \
api/typereference.vala \
api/typesymbol.vala \
api/visitor.vala \
- api/driver.vala \
content/block.vala \
content/blockcontent.vala \
content/comment.vala \
diff --git a/libvaladoc/api/driver.vala b/libvaladoc/api/driver.vala
deleted file mode 100644
index dd09ed388..000000000
--- a/libvaladoc/api/driver.vala
+++ /dev/null
@@ -1,42 +0,0 @@
-/* driver.vala
- *
- * Copyright (C) 2011 Florian Brosch
- *
- * This library 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 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * Author:
- * Florian Brosch <flo.brosch@gmail.com>
- */
-
-
-using Valadoc.Api;
-
-/**
- * A plugin register function for drivers
- *
- * @see ModuleLoader
- */
-[CCode (has_target = false)]
-public delegate Type Valadoc.DriverRegisterFunction (ModuleLoader module_loader);
-
-
-
-public interface Valadoc.Driver : Object {
- public abstract void write_gir (Settings settings, ErrorReporter reporter);
-
- public abstract Api.Tree? build (Settings settings, ErrorReporter reporter);
-}
-
-