dashboard
repositories
filestore
activity
search
login
main
/
wx.image_viewer
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
drag and drop
fszontagh
2024-02-25
5d543bcc0d15b871315a2123aec01041d73c53fb
[wx.image_viewer.git]
/
utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __IMGVIEWER_UTILS__
#define __IMGVIEWER_UTILS__
namespace ImageUtils
{
enum ROTATE_DIRECTION
{
LEFT,
RIGHT
};
struct ImageFileInfo
{
wxFileName *file;
wxImage *img;
};
};
#endif