struct CCL::IAutoSaveHook

Overview

#include <autosaver.h>

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

    virtual bool canAutoSaveNow (bool urgent) = 0;
    virtual void onAutoSave (bool begin) = 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 bool canAutoSaveNow (bool urgent) = 0

Tells if autosaving is allowed at this moment.

virtual void onAutoSave (bool begin) = 0

Autosave begin/end notification.