Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: HelloWorld ServoInterfaceBoardExample1 4180_Lab4
Diff: services/email/emailMessage.h
- Revision:
- 1:abb442332fa8
- Parent:
- 0:632c9925f013
--- a/services/email/emailMessage.h Fri Jun 11 16:05:15 2010 +0000
+++ b/services/email/emailMessage.h Mon Jun 14 10:33:54 2010 +0000
@@ -24,9 +24,9 @@
#ifndef EMAIL_MESSAGE_H
#define EMAIL_MESSAGE_H
-class SmtpClient;
+class SMTPClient;
-#include "smtp/smtpClient.h"
+#include "smtp/SMTPClient.h"
#include <queue>
using std::queue;
@@ -37,7 +37,7 @@
class EmailMessage
{
public:
- EmailMessage(SmtpClient* pClient);
+ EmailMessage(SMTPClient* pClient);
~EmailMessage();
void setFrom(const char* from);
@@ -50,13 +50,13 @@
//int scanf(const char* format, ... );
private:
- friend class SmtpClient;
+ friend class SMTPClient;
queue<string> m_lTo;
string m_from;
string m_content;
- SmtpClient* m_pClient;
+ SMTPClient* m_pClient;
};