struct CCL::BreadcrumbsComponent::ISubFolderQuery

Overview

#include <breadcrumbscomponent.h>

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

    virtual StringRef getParentPath () const = 0;

    virtual void addSubFolder (
        StringRef name,
        StringRef title = nullptr,
        IImage* icon = nullptr
    ) = 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 getParentPath () const = 0

The parent path whose subFolders are queried.

virtual void addSubFolder (
    StringRef name,
    StringRef title = nullptr,
    IImage* icon = nullptr
) = 0

Add a subFolder.