/* -*- C++ -*-
* mousedragevent.h
* $Id: mousedragevent.h,v 1.1.1.1 2000/07/20 20:54:14 ghali Exp $
*/
#ifndef MOUSEDRAGEVENT_H
#define MOUSEDRAGEVENT_H
#include "event.h"
namespace MSG {
class MouseDragEvent : public Event {
protected:
int Xdrag, Ydrag;
public:
MouseDragEvent(int _Xdrag, int _Ydrag);
virtual ~MouseDragEvent();
virtual EventType getEventType();
int getXdrag() const;
int getYdrag() const;
};
}
#endif
1.0.0 written by Dimitri van Heesch,
© 1997-1999