14 lines
179 B
C++
14 lines
179 B
C++
#ifndef CURSORS_H
|
|
#define CURSORS_H
|
|
|
|
#include <QCursor>
|
|
|
|
void initCustomCursors();
|
|
|
|
namespace Olive{
|
|
extern QCursor left_side;
|
|
extern QCursor right_side;
|
|
}
|
|
|
|
#endif // CURSORS_H
|