Skip to main content

priv/c_src/lexbor/html/interfaces/table_section_element.h

/*
 * Copyright (C) 2018 Alexander Borisov
 *
 * Author: Alexander Borisov <borisov@lexbor.com>
 */

#ifndef LEXBOR_HTML_TABLE_SECTION_ELEMENT_H
#define LEXBOR_HTML_TABLE_SECTION_ELEMENT_H

#ifdef __cplusplus
extern "C" {
#endif

#include "lexbor/html/interface.h"
#include "lexbor/html/interfaces/element.h"


struct lxb_html_table_section_element {
    lxb_html_element_t element;
};


LXB_API lxb_html_table_section_element_t *
lxb_html_table_section_element_interface_create(lxb_html_document_t *document);

LXB_API lxb_html_table_section_element_t *
lxb_html_table_section_element_interface_destroy(lxb_html_table_section_element_t *table_section_element);


#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* LEXBOR_HTML_TABLE_SECTION_ELEMENT_H */