class CCL::TextBlock

#include <itextbuilder.h>

class TextBlock
{
public:
    // construction

    TextBlock (ITextBuilder* builder);

    // methods

    TextBlock& operator << (const TextFragment& fragment);
    TextBlock& operator << (const TextBlock& block);
    StringRef asString () const;
    operator StringRef () const;
    ITextBuilder* getBuilder ();
    ITextBuilder* operator -> ();
};