aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCRange.h
blob: 752c4becca2945d9d22fc680e7a87bfef528ea9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __MAILCORE_MCRANGE_H_

#define __MAILCORE_MCRANGE_H_

namespace mailcore {
    
    struct Range {
        unsigned int index;
        unsigned int length;
    };
    
    Range RangeMake(unsigned int index, unsigned int length);
}

#endif