-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.hpp
More file actions
52 lines (39 loc) · 701 Bytes
/
client.hpp
File metadata and controls
52 lines (39 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// client.hpp
// Lab3
//
// Created by Yosef Yudborovsky on 5/15/17.
// Copyright © 2017 Yosef Yudborovsky. All rights reserved.
//
#ifndef client_hpp
#define client_hpp
//#include "server.cpp"
#include <stdio.h>
#include <string>
#include <iostream>
#include <fstream>
#include <sstream>
using namespace std;
class client_type
{
public:
int socketFD;
int id;
char received_message[1024];
string clientName;
};
/*
class Client
{
//auto constructor
//auto destructor
public:
//bool verifyUser();
//int createChat();
int clientID;
bool isActive;
int startClient();
//bool setActive();
};
*/
#endif /* client_hpp */