aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/renderer/MCSizeFormatter.h
blob: cfc8090fd29a859c962ee31ce30df678c6f8f368 (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
30
//
//  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 MAILCORE_EXPORT SizeFormatter : public Object {
    public:
        static String * stringWithSize(unsigned int size);
    };
    
}

#endif

#endif