renamed #define CLIENT_WS_HPP and CLIENT_WSS_HPP to CLIENT_HTTP_HPP and CLIENT_HTTPS_HPP.

This commit is contained in:
eidheim 2014-11-02 12:27:18 +01:00
commit 4a63b126b3
2 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
#ifndef CLIENT_WS_HPP
#define CLIENT_WS_HPP
#ifndef CLIENT_HTTP_HPP
#define CLIENT_HTTP_HPP
#include <boost/asio.hpp>
@ -200,4 +200,4 @@ namespace SimpleWeb {
};
}
#endif /* CLIENT_WS_HPP */
#endif /* CLIENT_HTTP_HPP */

View file

@ -1,5 +1,5 @@
#ifndef CLIENT_WSS_HPP
#define CLIENT_WSS_HPP
#ifndef CLIENT_HTTPS_HPP
#define CLIENT_HTTPS_HPP
#include "client_http.hpp"
#include <boost/asio/ssl.hpp>
@ -46,4 +46,4 @@ namespace SimpleWeb {
};
}
#endif /* CLIENT_WSS_HPP */
#endif /* CLIENT_HTTPS_HPP */