14 lines
199 B
C++
14 lines
199 B
C++
#ifndef CURSORS_H
|
|
#define CURSORS_H
|
|
|
|
#include <QCursor>
|
|
|
|
void init_custom_cursors();
|
|
|
|
namespace Olive{
|
|
extern QCursor Cursor_LeftTrim;
|
|
extern QCursor Cursor_RightTrim;
|
|
}
|
|
|
|
#endif // CURSORS_H
|