taiyou komazawa / DataPool

Dependencies:   Gamma Beta Alpha

Dependents:   2017_Bteam_I2CTransporter BETA_A ALPHA_A GAMMA_A

DataPool.h

Committer:
Komazawa_sun
Date:
2017-08-16
Revision:
1:47ea89b6364e
Parent:
0:52b800fb3844
Child:
7:b0f7025f6c49

File content as of revision 1:47ea89b6364e:

#ifndef DATAPOOL_H
#define DATAPOOL_H

class DataPool{
    public:
        virtual bool set() = 0;
        virtual int read(int index_num) = 0;
        virtual void reset() = 0;
        
};

#endif