Subversion Repositories Projects

Rev

Rev 392 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef HANDLER_H
#define HANDLER_H
#include <string>
#include <Parser.h>

/**
 * The Handler handels commands that are send from/to the Mikrokopter
 * and parses them using the Parser-class.
 */


class Handler {
    public:
        void read_mixer();
};

#endif