Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: Gamma Beta Alpha
Dependents: 2017_Bteam_I2CTransporter BETA_A ALPHA_A GAMMA_A
DataPool.h
- Committer:
- Komazawa_sun
- Date:
- 2017-08-16
- Revision:
- 0:52b800fb3844
- Child:
- 1:47ea89b6364e
File content as of revision 0:52b800fb3844:
#ifndef DATAPOOL_H
#define DATAPOOL_H
class DataPool{
    public:
        virtual bool set() = 0;
        virtual void reset() = 0;
};
#endif