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_title_element_h_
  9. #define dom_html_title_element_h_
  10.  
  11. #include <dom/core/exceptions.h>
  12. #include <dom/core/string.h>
  13.  
  14. typedef struct dom_html_title_element dom_html_title_element;
  15.  
  16. dom_exception dom_html_title_element_get_text(dom_html_title_element *ele,
  17.                 dom_string **text);
  18.  
  19. dom_exception dom_html_title_element_set_text(dom_html_title_element *ele,
  20.                 dom_string *text);
  21.  
  22. #endif
  23.  
  24.