diff options
author | Paul Young <paulyoungonline@gmail.com> | 2013-07-10 19:55:47 -0400 |
---|---|---|
committer | Paul Young <paulyoungonline@gmail.com> | 2013-07-10 19:55:47 -0400 |
commit | e8c623c017c4afe6e030cf836988a2d02adf8340 (patch) | |
tree | 1c14693168ea3e8292acb0089f4862d4947641ef /src/core/abstract | |
parent | 59d77597815a64e381f713e67c3c72371870a51c (diff) |
Added MCMessageConstantsPrivate.h
* Moved IMAPMessageRenderingType.
Diffstat (limited to 'src/core/abstract')
-rw-r--r-- | src/core/abstract/MCMessageConstantsPrivate.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/abstract/MCMessageConstantsPrivate.h b/src/core/abstract/MCMessageConstantsPrivate.h new file mode 100644 index 00000000..39312025 --- /dev/null +++ b/src/core/abstract/MCMessageConstantsPrivate.h @@ -0,0 +1,27 @@ +// +// MCMessageConstantsPrivate.h +// mailcore2 +// +// Created by Paul Young on 10/07/2013. +// Copyright (c) 2013 MailCore. All rights reserved. +// + +#ifndef __MAILCORE_MCMESSAGECONSTANTSPRIVATE_H_ +#define __MAILCORE_MCMESSAGECONSTANTSPRIVATE_H_ + +#ifdef __cplusplus + +namespace mailcore { + + typedef enum { + IMAPMessageRenderingTypeHTML, + IMAPMessageRenderingTypeHTMLBody, + IMAPMessageRenderingTypePlainText, + IMAPMessageRenderingTypePlainTextBody + } IMAPMessageRenderingType; + +} + +#endif + +#endif |