summaryrefslogtreecommitdiff
path: root/server/include/client.h
blob: 4fe8467834860f069c242c8c782794f3b9404db3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef CLIENT_H
#define CLIENT_H

#include <string>

class client
{
	public:
		client();
		virtual ~client();
	protected:
	private:
		//TODO: client subscriptions should be stored here
		std::string auth_token;
};

#endif // CLIENT_H