blob: 68d35f1e67d57e6c7dfb18de588508c7eb627d1f (
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
|
//
// MCObjC.h
// mailcore2
//
// Created by DINH Viêt Hoà on 1/27/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef MAILCORE_MCOBJC_H
#define MAILCORE_MCOBJC_H
#ifdef __OBJC__
#import <MailCore/MCOUtils.h>
#import <MailCore/MCOAbstract.h>
#import <MailCore/MCOIMAP.h>
#import <MailCore/MCORFC822.h>
#import <MailCore/MCOPOP.h>
#import <MailCore/MCOSMTP.h>
#import <MailCore/MCONNTP.h>
#import <MailCore/MCOProvider.h>
#endif
#endif
|