diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:59:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:59:50 -0600 |
commit | 9cc13dcbb01a96c9e60a07ca63c61d24b374f50d (patch) | |
tree | ab537a329b9613e11dce8195761f93ffe82aed24 /mimelib/doc/msgcmp.html | |
parent | 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12 (diff) | |
download | tdepim-9cc13dcbb01a96c9e60a07ca63c61d24b374f50d.tar.gz tdepim-9cc13dcbb01a96c9e60a07ca63c61d24b374f50d.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12.
Diffstat (limited to 'mimelib/doc/msgcmp.html')
-rw-r--r-- | mimelib/doc/msgcmp.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/mimelib/doc/msgcmp.html b/mimelib/doc/msgcmp.html index 48a7ab549..2e8a3da77 100644 --- a/mimelib/doc/msgcmp.html +++ b/mimelib/doc/msgcmp.html @@ -143,13 +143,13 @@ These features are the following: <P> <LI> Children. The preceding discussion about a component's parent is relevant - to an understanding of a component's children. A component's parse method - calls the parse methods of its children after it has executed its own parse - method (and, in some cases, created all of its children). Also, a component - typically calls the assemble method of its children before it executes its + to an understanding of a component's tqchildren. A component's parse method + calls the parse methods of its tqchildren after it has executed its own parse + method (and, in some cases, created all of its tqchildren). Also, a component + typically calls the assemble method of its tqchildren before it executes its own. A component's child may request that the component set its is-modified - flag. <B><TT>DwMessageComponent</TT></B> does not deal directly with children. - Derived classes bear all the responsibility for handling their children. + flag. <B><TT>DwMessageComponent</TT></B> does not deal directly with tqchildren. + Derived classes bear all the responsibility for handling their tqchildren. </UL> <H2> <FONT COLOR="navy"> Public Member Functions </FONT> @@ -174,7 +174,7 @@ The third constructor copies <B><TT>aStr</TT></B> to the new <B><TT>aParent</TT></B> as its parent. In typical cases, the virtual member function <B><TT>Parse()</TT></B> should be called immediately after this constructor to parse the new <B><TT>DwMessageComponent</TT></B> object and -all of its children into their broken-down representations. +all of its tqchildren into their broken-down representations. <P> <FONT COLOR="teal"><B> const DwMessageComponent& <A NAME="op_eq">operator =</A> (const DwMessageComponent& aCmp) </B></FONT> @@ -189,11 +189,11 @@ A pure virtual function which provides an interface to the parse method. The parse method, implemented in derived classes, is responsible for extracting the broken-down representation from the string representation. In some derived classes, such as <B><TT>DwHeaders</TT></B>, the parse method is also responsible -for creating the children of the object. (In the case of -<B><TT>DwHeaders</TT></B>, the children created are the +for creating the tqchildren of the object. (In the case of +<B><TT>DwHeaders</TT></B>, the tqchildren created are the <B><TT>DwField</TT></B> objects that represent the <I>field</I>s contained in the <I>headers</I>.) The <B><TT>Parse()</TT></B> function always calls -the <B><TT>Parse()</TT></B> function of all of its children. +the <B><TT>Parse()</TT></B> function of all of its tqchildren. <P> <FONT COLOR="teal"><B> virtual void <A NAME="Assemble">Assemble</A>() = 0 </B></FONT> @@ -203,11 +203,11 @@ The assemble method, implemented in derived classes, is responsible for creating the string representation from the broken-down representation. In other words, the assemble method is the opposite of the parse method. Before assembling its string representation, the assemble method calls the assemble method -of each of its children. In this way, the entire tree structure that represents +of each of its tqchildren. In this way, the entire tree structure that represents a message may be traversed. If the is-modifed flag for a <B><TT>DwMessageComponent</TT></B> is cleared, the <B><TT>Assemble()</TT></B> function will return immediately without calling -the <B><TT>Assemble()</TT></B> function of any of its children. +the <B><TT>Assemble()</TT></B> function of any of its tqchildren. <P> <FONT COLOR="teal"><B> virtual DwMessageComponent* <A NAME="Clone">Clone</A>() const = 0 </B></FONT> @@ -224,7 +224,7 @@ Sets the object's string representation. <B><TT>aCstr</TT></B> must be NUL-terminated. This member function does not invoke the parse method. Typically, the virtual member function <B><TT>Parse()</TT></B> should be called immediately after this member function to parse the -<B><TT>DwMessageComponent</TT></B> object and all of its children into their +<B><TT>DwMessageComponent</TT></B> object and all of its tqchildren into their broken-down representations. See also <B><TT>DwMessageComponent::Parse()</TT></B> <P> |