Michael Spencer / Smoothie

Dependencies:   mbed

Fork of Smoothie by Stéphane Cachat

libs/Hook.h

Committer:
Michael J. Spencer
Date:
2014-02-28
Revision:
2:1df0b61d3b5a
Parent:
0:31e91bb0ef3c

File content as of revision 2:1df0b61d3b5a:

#ifndef HOOK_H
#define HOOK_H
#include "libs/FPointer.h"

// Hook is just a glorified FPointer

class Hook : public FPointer {
    public:
        Hook();
        int     interval;
        int     countdown;
};

#endif