struct CCL::ICommandCategory

Overview

#include <icommandtable.h>

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

    virtual StringRef CCL_API getDisplayCategory () const = 0;
    virtual IUnknownIterator*CCL_API newCommandIterator () const = 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 StringRef CCL_API getDisplayCategory () const = 0

Get category string for display.

virtual IUnknownIterator*CCL_API newCommandIterator () const = 0

Create iterator of ICommand objects in this category.