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_meta_element_h_
  9. #define dom_html_meta_element_h_
  10.  
  11. #include <dom/core/string.h>
  12.  
  13. typedef struct dom_html_meta_element dom_html_meta_element;
  14.  
  15. dom_exception dom_html_meta_element_get_content(dom_html_meta_element *ele,
  16.                 dom_string **content);
  17.  
  18. dom_exception dom_html_meta_element_set_content(dom_html_meta_element *ele,
  19.                 dom_string *content);
  20.  
  21. dom_exception dom_html_meta_element_get_http_equiv(dom_html_meta_element *ele,
  22.                 dom_string **http_equiv);
  23.  
  24. dom_exception dom_html_meta_element_set_http_equiv(dom_html_meta_element *ele,
  25.                 dom_string *http_equiv);
  26.  
  27. dom_exception dom_html_meta_element_get_name(dom_html_meta_element *ele,
  28.                 dom_string **name);
  29.  
  30. dom_exception dom_html_meta_element_set_name(dom_html_meta_element *ele,
  31.                 dom_string *name);
  32.  
  33. dom_exception dom_html_meta_element_get_scheme(dom_html_meta_element *ele,
  34.                 dom_string **scheme);
  35.  
  36. dom_exception dom_html_meta_element_set_scheme(dom_html_meta_element *ele,
  37.                 dom_string *scheme);
  38.  
  39. #endif
  40.  
  41.