#ifndef JOYSTICK_H
#define JOYSTICK_H 1

#include <linux/joystick.h>

class Joystick
{
	public:
		int create();
		void finish();
		int status();
		void print();

		int fd;
		struct JS_DATA_TYPE js;
		char *name;
};

#endif


