Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * This file is part of libdom.
  3.  * Licensed under the MIT License,
  4.  *                http://www.opensource.org/licenses/mit-license.php
  5.  * Copyright 2009 Bo Yang <struggleyb.nku.com>
  6.  */
  7.  
  8. #ifndef dom_html_html_element_h_
  9. #define dom_html_html_element_h_
  10.  
  11. #include <dom/html/html_element.h>
  12.  
  13. typedef struct dom_html_html_element dom_html_html_element;
  14.  
  15. dom_exception dom_html_html_element_get_version(
  16.                 struct dom_html_html_element *element, dom_string **version);  
  17. dom_exception dom_html_html_element_set_version(
  18.                 struct dom_html_html_element *element, dom_string *version);
  19.  
  20.  
  21. #endif
  22.  
  23.