ok

Dependencies:   mbed

Fork of g3_waterplay by Mario Simaremare

Procedure.h

Committer:
ekasinambela
Date:
2016-06-20
Revision:
10:fbab9fa07922
Parent:
7:46e65aeb4df2

File content as of revision 10:fbab9fa07922:

/*
* G3: WATERPLAY
*/

#ifndef PROCEDURE_H
#define PROCEDURE_H

#include "Printer.h"
#include "mbed.h"

class Procedure
{
public:
    Procedure(
        Printer &printer
    );
    int proceed();

private:
    Printer &_printer;
};

#endif