]> git.vomp.tv Git - vompclient.git/blob - region.h
Changes for demuxer. New mutex code
[vompclient.git] / region.h
1 #ifndef REGION_H
2 #define REGION_H
3
4 #include <stdio.h>
5 #include "defines.h"
6
7 class Region
8 {
9   public:
10     Region();
11     bool overlappedBy(Region& doesthisOverlap);
12 //    Region subtract(Region& other);
13     UINT x2();
14     UINT y2();
15
16     UINT x;
17     UINT y;
18     UINT w;
19     UINT h;
20     int z;
21 };
22
23 #endif