summaryrefslogtreecommitdiff
path: root/include/dom/html/html_head_element.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dom/html/html_head_element.h')
-rw-r--r--include/dom/html/html_head_element.h31
1 files changed, 4 insertions, 27 deletions
diff --git a/include/dom/html/html_head_element.h b/include/dom/html/html_head_element.h
index ce2a817..cb10358 100644
--- a/include/dom/html/html_head_element.h
+++ b/include/dom/html/html_head_element.h
@@ -12,33 +12,10 @@
typedef struct dom_html_head_element dom_html_head_element;
-typedef struct dom_html_head_element_vtable {
- struct dom_html_element_vtable base;
-
- dom_exception (*dom_html_head_element_get_profile)(struct dom_html_head_element *element,
- dom_string **profile);
- dom_exception (*dom_html_head_element_set_profile)(struct dom_html_head_element *element,
- dom_string *profile);
-} dom_html_head_element_vtable;
-
-static inline dom_exception dom_html_head_element_get_profile(
- struct dom_html_head_element *element, dom_string **profile)
-{
- return ((dom_html_head_element_vtable *) ((dom_node *) element)->vtable)->
- dom_html_head_element_get_profile(element, profile);
-}
-#define dom_html_head_element_get_profile(e, profile) \
- dom_html_head_element_get_profile((dom_html_head_element *) (e), (profile))
-
-static inline dom_exception dom_html_head_element_set_profile(
- struct dom_html_head_element *element, dom_string *profile)
-{
- return ((dom_html_head_element_vtable *) ((dom_node *) element)->vtable)->
- dom_html_head_element_set_profile(element, profile);
-}
-#define dom_html_head_element_set_profile(e, profile) \
- dom_html_head_element_set_profile((dom_html_head_element *) (e), (profile))
-
+dom_exception dom_html_head_element_get_profile(
+ struct dom_html_head_element *element, dom_string **profile);
+dom_exception dom_html_head_element_set_profile(
+ struct dom_html_head_element *element, dom_string *profile);
#endif