DHCOM_HAL
Hardware-abstraction library (HAL) for multiple targets, including DHCOM modules
 All Data Structures Files Functions Enumerations Macros Groups
touch.h
Go to the documentation of this file.
1 /*
2  * touch.h
3  *
4  * Created on: 07.11.2012
5  * Author: Peter Kishalov
6  */
7 
8 
9 #ifndef TOUCH_H_
10 #define TOUCH_H_
11 
12 
13 class Touch
14 {
15 public:
16  Touch();
17  virtual ~Touch();
18 
19  virtual void getCoordinates(unsigned int &x, unsigned int &y);
20 };
21 
22 
51 #endif /* TOUCH_H_ */