view TaskManager/Test/test_render/Button.h @ 552:a307e33178e7

add Application/send_linda.cc
author aaa
date Thu, 22 Oct 2009 19:34:38 +0900
parents eb20274baa7c
children
line wrap: on
line source

#ifndef INCLUDED_BUTTON
#define INCLUDED_BUTTON

class Button {
public:
    int push;
    int hold;
    int release;

    Button(void) : push(0), hold(0), release(0) {}

    void push_work(void);
    void release_work(void);
    int isPush(void);
    int isHold(void);
    int isRelease(void);
};

#endif