view include/TaskManager/SpeNop.h @ 11:587baff06cbc

Initial revision
author akira
date Thu, 07 Feb 2008 19:17:06 +0900
parents 2356238ebea7
children 6a77b5e755ab
line wrap: on
line source

#ifndef INCLUDED_SPE_NOP
#define INCLUDED_SPE_NOP

#ifndef INCLUDED_SPE_MANAGER
#  include "SpeManager.h"
#endif

class SpeNop : public SpeTaskBase {
public:
    /* constructor */
    SpeNop(void);

    /* variables */

    /* functions */
    void read(void);
    void exec(void);
    void write(void);
    SpeTaskBase* next(SpeManager *, SpeTaskBase *);
};

#endif