#include <cgicc/HTMLAtomicElement.h>
Public Member Functions | |
virtual HTMLElement * | clone () const |
Clone this element. | |
virtual const char * | getName () const |
Get the name of this element. | |
Constructors and Destructor | |
HTMLAtomicElement () | |
Create a new empty atomic element. | |
HTMLAtomicElement (const HTMLAttributeList &attributes) | |
Create a new element, specifying the HTMLAttributes. | |
virtual | ~HTMLAtomicElement () |
Destructor. |
An atomic HTML element is an element in which the opening and closing tags are combined. For example, in the HTML code
<meta link="made" href="mailto:sbooth@gnu.org" />
meta
tag is an atomic HTML element because the opening and closing tags appear together. Definition at line 56 of file HTMLAtomicElement.h.
cgicc::HTMLAtomicElement< Tag >::HTMLAtomicElement | ( | const HTMLAttributeList & | attributes | ) | [inline] |
Create a new element, specifying the HTMLAttributes.
attributes | The HTMLAttributes contained within the element. |
Definition at line 78 of file HTMLAtomicElement.h.
virtual HTMLElement* cgicc::HTMLAtomicElement< Tag >::clone | ( | ) | const [inline, virtual] |
Clone this element.
Implements cgicc::HTMLElement.
Definition at line 97 of file HTMLAtomicElement.h.
virtual const char* cgicc::HTMLAtomicElement< Tag >::getName | ( | ) | const [inline, virtual] |
Get the name of this element.
For example, meta
.
Implements cgicc::HTMLElement.
Definition at line 108 of file HTMLAtomicElement.h.