struct CCL::IMarkdownContentHandler

Overview

#include <imarkdownparser.h>

struct IMarkdownContentHandler: public CCL::IUnknown
{
    // methods

    virtual tresult CCL_API startNode (const IMarkdownNode& node) = 0;
    virtual tresult CCL_API endNode (const IMarkdownNode& node) = 0;
};

Inherited Members

public:
    // methods

    virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0;
    virtual unsigned int CCL_API retain () = 0;
    virtual unsigned int CCL_API release () = 0;

Detailed Documentation

Methods

virtual tresult CCL_API startNode (const IMarkdownNode& node) = 0

Notification of the beginning of a Markdown node.

A corresponding endNode call will follow.

virtual tresult CCL_API endNode (const IMarkdownNode& node) = 0

Notification of the end of a Markdown node.