struct CCL::IBrowserNode

Overview

Basic interface of all nodes in browser. More…

#include <ibrowser.h>

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

    virtual CString CCL_API getNodeType () const = 0;
    virtual tbool CCL_API isNodeType (StringID type) const = 0;
    virtual StringRef CCL_API getNodeTitle () const = 0;
    DECLARE_STRINGID_MEMBER (kTitleProperty);
};

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

Basic interface of all nodes in browser.

Methods

virtual CString CCL_API getNodeType () const = 0

Get type of this node (returned by value).

virtual tbool CCL_API isNodeType (StringID type) const = 0

Check if this node is related to given type.

virtual StringRef CCL_API getNodeTitle () const = 0

Get title of this node.