Subversion Repositories Projects

Rev

Rev 391 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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