struct CCL::KernelTerminator

Define termination function.

#include <initterm.h>

struct KernelTerminator
{
    // fields

    void (* func )();
    int level;

    // construction

    KernelTerminator (void (*) () func, int level = kSecondRun);
    KernelTerminator ();

    // methods

    bool operator == (const KernelTerminator& i) const;
    bool operator > (const KernelTerminator& i) const;
};