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.
22 lines
333 B
22 lines
333 B
/*
|
|
* 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_ */
|
|
|