aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/smtp
diff options
context:
space:
mode:
authorGravatar CodaFi <devteam.codafi@gmail.com>2014-02-22 13:15:27 -0700
committerGravatar CodaFi <devteam.codafi@gmail.com>2014-02-22 13:15:27 -0700
commit3bfa1104dee6dd16ba23ca18062ad8c62d73fa9c (patch)
treeccf6668a454774c7a74d5aa498fbaf672fa8a6e0 /src/async/smtp
parentfb06d5133a88f80daed1a7d1bea00f558446f2ae (diff)
Conformant header guards
Fixes #606
Diffstat (limited to 'src/async/smtp')
-rw-r--r--src/async/smtp/MCAsyncSMTP.h4
-rw-r--r--src/async/smtp/MCSMTPAsyncSession.h4
-rw-r--r--src/async/smtp/MCSMTPCheckAccountOperation.h4
-rw-r--r--src/async/smtp/MCSMTPDisconnectOperation.h5
-rw-r--r--src/async/smtp/MCSMTPNoopOperation.h5
-rw-r--r--src/async/smtp/MCSMTPOperation.h4
-rw-r--r--src/async/smtp/MCSMTPOperationCallback.h4
-rw-r--r--src/async/smtp/MCSMTPSendWithDataOperation.h4
8 files changed, 18 insertions, 16 deletions
diff --git a/src/async/smtp/MCAsyncSMTP.h b/src/async/smtp/MCAsyncSMTP.h
index 194a8fd3..d7bac9db 100644
--- a/src/async/smtp/MCAsyncSMTP.h
+++ b/src/async/smtp/MCAsyncSMTP.h
@@ -6,9 +6,9 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
-#ifndef __MAILCORE_MCASYNCSMTP_H_
+#ifndef MAILCORE_MCASYNCSMTP_H
-#define __MAILCORE_MCASYNCSMTP_H_
+#define MAILCORE_MCASYNCSMTP_H
#include <MailCore/MCSMTPAsyncSession.h>
#include <MailCore/MCSMTPOperation.h>
diff --git a/src/async/smtp/MCSMTPAsyncSession.h b/src/async/smtp/MCSMTPAsyncSession.h
index b3ef4455..fa0893d2 100644
--- a/src/async/smtp/MCSMTPAsyncSession.h
+++ b/src/async/smtp/MCSMTPAsyncSession.h
@@ -1,6 +1,6 @@
-#ifndef __MAILCORE_MCSMTPASYNCSESSION_H
+#ifndef MAILCORE_MCSMTPASYNCSESSION_H
-#define __MAILCORE_MCSMTPASYNCSESSION_H
+#define MAILCORE_MCSMTPASYNCSESSION_H
#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCMessageConstants.h>
diff --git a/src/async/smtp/MCSMTPCheckAccountOperation.h b/src/async/smtp/MCSMTPCheckAccountOperation.h
index af9862c4..e1fd373f 100644
--- a/src/async/smtp/MCSMTPCheckAccountOperation.h
+++ b/src/async/smtp/MCSMTPCheckAccountOperation.h
@@ -6,9 +6,9 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
-#ifndef __MAILCORE_MCSMTPCHECKACCOUNTOPERATION_H_
+#ifndef MAILCORE_MCSMTPCHECKACCOUNTOPERATION_H
-#define __MAILCORE_MCSMTPCHECKACCOUNTOPERATION_H_
+#define MAILCORE_MCSMTPCHECKACCOUNTOPERATION_H
#include <MailCore/MCSMTPOperation.h>
#include <MailCore/MCAbstract.h>
diff --git a/src/async/smtp/MCSMTPDisconnectOperation.h b/src/async/smtp/MCSMTPDisconnectOperation.h
index bd35674f..11853065 100644
--- a/src/async/smtp/MCSMTPDisconnectOperation.h
+++ b/src/async/smtp/MCSMTPDisconnectOperation.h
@@ -6,8 +6,9 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
-#ifndef __MAILCORE_MCSMTPDISCONNECTOPERATION_H_
-#define __MAILCORE_MCSMTPDISCONNECTOPERATION_H_
+#ifndef MAILCORE_MCSMTPDISCONNECTOPERATION_H
+
+#define MAILCORE_MCSMTPDISCONNECTOPERATION_H
#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCAbstract.h>
diff --git a/src/async/smtp/MCSMTPNoopOperation.h b/src/async/smtp/MCSMTPNoopOperation.h
index 53c5d864..09116758 100644
--- a/src/async/smtp/MCSMTPNoopOperation.h
+++ b/src/async/smtp/MCSMTPNoopOperation.h
@@ -6,8 +6,9 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
-#ifndef __MAILCORE_MCSMTPNOOPOPERATION_H_
-#define __MAILCORE_MCSMTPNOOPOPERATION_H_
+#ifndef MAILCORE_MCSMTPNOOPOPERATION_H
+
+#define MAILCORE_MCSMTPNOOPOPERATION_H
#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCAbstract.h>
diff --git a/src/async/smtp/MCSMTPOperation.h b/src/async/smtp/MCSMTPOperation.h
index 7f6c9e7b..1d24f481 100644
--- a/src/async/smtp/MCSMTPOperation.h
+++ b/src/async/smtp/MCSMTPOperation.h
@@ -6,9 +6,9 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
-#ifndef __MAILCORE_MCSMTPOPERATION_H_
+#ifndef MAILCORE_MCSMTPOPERATION_H
-#define __MAILCORE_MCSMTPOPERATION_H_
+#define MAILCORE_MCSMTPOPERATION_H
#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCSMTPProgressCallback.h>
diff --git a/src/async/smtp/MCSMTPOperationCallback.h b/src/async/smtp/MCSMTPOperationCallback.h
index cf5630ec..5a3d00df 100644
--- a/src/async/smtp/MCSMTPOperationCallback.h
+++ b/src/async/smtp/MCSMTPOperationCallback.h
@@ -6,9 +6,9 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
-#ifndef __MAILCORE_MCSMTPOPERATIONCALLBACK_H_
+#ifndef MAILCORE_MCSMTPOPERATIONCALLBACK_H
-#define __MAILCORE_MCSMTPOPERATIONCALLBACK_H_
+#define MAILCORE_MCSMTPOPERATIONCALLBACK_H
#ifdef __cplusplus
diff --git a/src/async/smtp/MCSMTPSendWithDataOperation.h b/src/async/smtp/MCSMTPSendWithDataOperation.h
index ee325b54..9d2f087a 100644
--- a/src/async/smtp/MCSMTPSendWithDataOperation.h
+++ b/src/async/smtp/MCSMTPSendWithDataOperation.h
@@ -6,9 +6,9 @@
// Copyright (c) 2013 MailCore. All rights reserved.
//
-#ifndef __MAILCORE_MCSMTPSENDWITHDATAOPERATION_H_
+#ifndef MAILCORE_MCSMTPSENDWITHDATAOPERATION_H
-#define __MAILCORE_MCSMTPSENDWITHDATAOPERATION_H_
+#define MAILCORE_MCSMTPSENDWITHDATAOPERATION_H
#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCAbstract.h>