aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/remoteuser.h
blob: 0d22dd9eff7e038c106bad2de9868f50c6d96850 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CoreExport RemoteUser : public User
{
 public:
	TreeServer* srv;
	RemoteUser(const std::string& uid, TreeServer* Srv) :
		User(uid, Srv->GetName(), USERTYPE_REMOTE), srv(Srv)
	{
	}
	virtual void SendText(const std::string& line);
	virtual void DoWhois(User* src);
};