You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
333 B
23 lines
333 B
14 years ago
|
/*
|
||
|
* UBRubberBand.h
|
||
|
*
|
||
|
* Created on: 20 mai 2009
|
||
|
* Author: Luc
|
||
|
*/
|
||
|
|
||
|
#ifndef UBRUBBERBAND_H_
|
||
|
#define UBRUBBERBAND_H_
|
||
|
|
||
|
#include <QRubberBand>
|
||
|
|
||
|
class UBRubberBand : public QRubberBand
|
||
|
{
|
||
|
Q_OBJECT;
|
||
|
|
||
|
public:
|
||
|
UBRubberBand(Shape s, QWidget * p = 0);
|
||
|
virtual ~UBRubberBand();
|
||
|
};
|
||
|
|
||
|
#endif /* UBRUBBERBAND_H_ */
|