aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/renderer/MCSizeFormatter.h
blob: 0eb40f6b23002204a682f0b1a671d95df855c32e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
//  MCSizeFormatter.h
//  testUI
//
//  Created by DINH Viêt Hoà on 1/29/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCSIZEFORMATTER_H_
#define __MAILCORE_MCSIZEFORMATTER_H_

#include <MailCore/MCBaseTypes.h>

#ifdef __cplusplus

namespace mailcore {
    
    class String;
    
    class SizeFormatter : public Object {
    public:
        static String * stringWithSize(unsigned int size);
    };
    
}

#endif

#endif