Subversion Repositories Projects

Rev

Rev 392 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
391 Brean 1
#ifndef HANDLER_H
2
#define HANDLER_H
3
#include <string>
4
#include <Parser.h>
5
 
6
/**
7
 * The Handler handels commands that are send from/to the Mikrokopter
8
 * and parses them using the Parser-class.
9
 */
10
 
11
class Handler {
12
    public:
13
        void read_mixer();
14
};
15
 
16
#endif