From 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:50:21 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- mimelib/doc/msgcmp.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'mimelib/doc') diff --git a/mimelib/doc/msgcmp.html b/mimelib/doc/msgcmp.html index 2e8a3da77..48a7ab549 100644 --- a/mimelib/doc/msgcmp.html +++ b/mimelib/doc/msgcmp.html @@ -143,13 +143,13 @@ These features are the following:

  • Children. The preceding discussion about a component's parent is relevant - 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 + 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 own. A component's child may request that the component set its is-modified - flag. DwMessageComponent does not deal directly with tqchildren. - Derived classes bear all the responsibility for handling their tqchildren. + flag. DwMessageComponent does not deal directly with children. + Derived classes bear all the responsibility for handling their children.

    Public Member Functions @@ -174,7 +174,7 @@ The third constructor copies aStr to the new aParent as its parent. In typical cases, the virtual member function Parse() should be called immediately after this constructor to parse the new DwMessageComponent object and -all of its tqchildren into their broken-down representations. +all of its children into their broken-down representations.

    const DwMessageComponent& operator = (const DwMessageComponent& aCmp) @@ -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 DwHeaders, the parse method is also responsible -for creating the tqchildren of the object. (In the case of -DwHeaders, the tqchildren created are the +for creating the children of the object. (In the case of +DwHeaders, the children created are the DwField objects that represent the fields contained in the headers.) The Parse() function always calls -the Parse() function of all of its tqchildren. +the Parse() function of all of its children.

    virtual void Assemble() = 0 @@ -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 tqchildren. In this way, the entire tree structure that represents +of each of its children. In this way, the entire tree structure that represents a message may be traversed. If the is-modifed flag for a DwMessageComponent is cleared, the Assemble() function will return immediately without calling -the Assemble() function of any of its tqchildren. +the Assemble() function of any of its children.

    virtual DwMessageComponent* Clone() const = 0 @@ -224,7 +224,7 @@ Sets the object's string representation. aCstr must be NUL-terminated. This member function does not invoke the parse method. Typically, the virtual member function Parse() should be called immediately after this member function to parse the -DwMessageComponent object and all of its tqchildren into their +DwMessageComponent object and all of its children into their broken-down representations. See also DwMessageComponent::Parse()

    -- cgit v1.2.1