Websocket communication

Dependents:   Ethernet

WebSocket_COMM.h

Committer:
13075593
Date:
2016-04-03
Revision:
0:c10e8dc4cffd

File content as of revision 0:c10e8dc4cffd:

#ifndef WS_COMM_H
#define WS_COMM_H

#include "Websocket.h"
#include <string>

class WebSocket_Communication
{
    public:
        WebSocket_Communication(string url);
        void initWebSocket();
        void sendDataWebSocket(char *data);
        
    private : 
        Websocket *webSocket;
        char *url;
};

#endif