#include <C_BaseTag.h>
Inheritance diagram for C_BaseTag:
Public Types | |
enum | eTagType { UNKNOWN, IMPORT, STREAM, META, HEAD, TITLE, BASE, CLIP, ANCHOR, IMAGE, DESC, PARAM, BAD_TAG = 1000 } |
Public Member Functions | |
C_BaseTag (void) | |
virtual | ~C_BaseTag (void) |
wstring | href () |
Returns the base uri that is used for this cmml document. | |
void | setHref (wstring inHref) |
Sets the base uri used for this cmml document. | |
virtual wstring | toString () |
Converts this tag to an xml string. | |
C_BaseTag * | clone () |
Performs a deep copy returning a pointer you can keep. | |
virtual C_CMMLTag * | genericClone () |
Performs a deep copy returning a pointer to the base class you can keep. | |
wstring | id () |
Returns the id attribute for this tag. | |
void | setId (wstring inId) |
Sets the id attribute for this tag. | |
eTagType | tagType () |
Returns the type of tag this really is. | |
Protected Member Functions | |
virtual void | privateClone (C_CMMLTag *outTag) |
Internal cloning mechanism. | |
wstring | makeAttribute (wstring inElemName, wstring inElemContent) |
Makes an attribute of the form name="content" and returns a string. | |
wstring | makeRequiredAttribute (wstring inElemName, wstring inElemContent) |
wstring | escapeEntities (wstring inString) |
Escapes out & " < > ' and turns it into an entity reference. | |
wstring | replaceAll (wstring inOriginal, wchar_t inReplaceThis, wstring inWithThis) |
Implements the missing functionality from an stl string... ie replace. | |
Protected Attributes | |
wstring | mHref |
wstring | mId |
eTagType | mTagType |
|
Definition at line 60 of file C_CMMLTag.h. Referenced by C_CMMLTag::tagType(). |
|
Definition at line 38 of file C_BaseTag.cpp. References mHref. |
|
Definition at line 44 of file C_BaseTag.cpp. |
|
Performs a deep copy returning a pointer you can keep.
Definition at line 59 of file C_BaseTag.cpp. References privateClone(). Referenced by genericClone(), C_HeadTag::privateClone(), and illiminable::libCMMLTagsDotNET::HeadTag::setBase(). |
Here is the call graph for this function:
|
Escapes out & " < > ' and turns it into an entity reference.
Definition at line 92 of file C_CMMLTag.cpp. References C_CMMLTag::replaceAll(). Referenced by C_CMMLTag::makeAttribute(), C_CMMLTag::makeRequiredAttribute(), C_TitleTag::toString(), C_HeadTag::toString(), C_DescTag::toString(), and C_AnchorTag::toString(). |
Here is the call graph for this function:
|
Performs a deep copy returning a pointer to the base class you can keep.
Implements C_CMMLTag. Definition at line 65 of file C_BaseTag.cpp. References clone(). |
Here is the call graph for this function:
|
Returns the base uri that is used for this cmml document.
Definition at line 49 of file C_BaseTag.cpp. Referenced by CMMLParser::parseBaseTag(). |
|
Returns the id attribute for this tag.
Definition at line 46 of file C_CMMLTag.cpp. Referenced by illiminable::libCMMLTagsDotNET::CMMLTag::id(). |
|
Makes an attribute of the form name="content" and returns a string.
Definition at line 56 of file C_CMMLTag.cpp. References C_CMMLTag::escapeEntities(). Referenced by C_HumReadCMMLTag::makeLangElements(), C_TitleTag::toString(), C_StreamTag::toString(), C_ParamTag::toString(), C_MetaTag::toString(), C_ImportTag::toString(), C_ImageTag::toString(), C_DescTag::toString(), C_CMMLRootTag::toString(), C_ClipTag::toString(), toString(), and C_AnchorTag::toString(). |
Here is the call graph for this function:
|
Definition at line 66 of file C_CMMLTag.cpp. References C_CMMLTag::escapeEntities(). Referenced by C_AnchorTag::toString(). |
Here is the call graph for this function:
|
Internal cloning mechanism.
Reimplemented from C_CMMLTag. Definition at line 81 of file C_BaseTag.cpp. References mHref, and C_CMMLTag::privateClone(). Referenced by clone(). |
Here is the call graph for this function:
|
Implements the missing functionality from an stl string... ie replace.
Definition at line 73 of file C_CMMLTag.cpp. Referenced by C_CMMLTag::escapeEntities(). |
|
Sets the base uri used for this cmml document.
Definition at line 54 of file C_BaseTag.cpp. References mHref. Referenced by CMMLParser::parseBaseTag(), and illiminable::libCMMLTagsDotNET::BaseTag::setHref(). |
|
Sets the id attribute for this tag.
Definition at line 51 of file C_CMMLTag.cpp. References C_CMMLTag::mId. Referenced by CMMLParser::parseAnchorTag(), CMMLParser::parseBaseTag(), CMMLParser::parseClipTag(), CMMLParser::parseCMMLRootTag(), CMMLParser::parseDescTag(), CMMLParser::parseHeadTag(), CMMLParser::parseImageTag(), CMMLParser::parseImportTag(), CMMLParser::parseMetaTag(), CMMLParser::parseParamTag(), CMMLParser::parseStreamTag(), CMMLParser::parseTitleTag(), C_CMMLTag::privateClone(), and illiminable::libCMMLTagsDotNET::CMMLTag::setId(). |
|
Returns the type of tag this really is.
Definition at line 111 of file C_CMMLTag.cpp. References C_CMMLTag::eTagType. Referenced by CMMLRawSourcePin::deliverTag(). |
|
Converts this tag to an xml string.
Implements C_CMMLTag. Definition at line 68 of file C_BaseTag.cpp. References C_CMMLTag::makeAttribute(), and mHref. Referenced by C_HeadTag::toString(). |
Here is the call graph for this function:
|
Definition at line 72 of file C_BaseTag.h. Referenced by C_BaseTag(), privateClone(), setHref(), and toString(). |
|
Definition at line 89 of file C_CMMLTag.h. Referenced by C_CMMLTag::privateClone(), and C_CMMLTag::setId(). |
|
Definition at line 90 of file C_CMMLTag.h. |