From ac42344d05ec326f0063133498ec1c040e924db2 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 5 Dec 2010 23:52:56 +0000 Subject: Remove bootstrap infrastructure, and just make dom_implementation a stub. We only support a single implementation, so all the registry and implementation list stuff is totally unnecesary and overcomplex svn path=/trunk/dom/; revision=11017 --- include/dom/bootstrap/implregistry.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 include/dom/bootstrap/implregistry.h (limited to 'include/dom/bootstrap/implregistry.h') diff --git a/include/dom/bootstrap/implregistry.h b/include/dom/bootstrap/implregistry.h deleted file mode 100644 index e14738c..0000000 --- a/include/dom/bootstrap/implregistry.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * This file is part of libdom. - * Licensed under the MIT License, - * http://www.opensource.org/licenses/mit-license.php - * Copyright 2007 John-Mark Bell - */ - -#ifndef dom_bootstrap_implregistry_h_ -#define dom_bootstrap_implregistry_h_ - -#include -#include - -struct dom_implementation; -struct dom_implementation_list; -struct dom_string; - -/* Initialise the implementation registry */ -dom_exception dom_implregistry_initialise( - dom_alloc allocator, void *ptr); - -/* Retrieve a DOM implementation from the registry */ -dom_exception dom_implregistry_get_dom_implementation( - struct dom_string *features, - struct dom_implementation **impl); - -/* Get a list of DOM implementations that support the requested features */ -dom_exception dom_implregistry_get_dom_implementation_list( - struct dom_string *features, - struct dom_implementation_list **list); - -#endif -- cgit v1.2.3