blob: 9cba5324a2e4e41cae41344318a21501fb62b627 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// $Id$
#include "Options.h"
#include "SL_Client.h"
SL_Client::SL_Client (const char *usr_name)
: Single_Lookup (usr_name)
{
}
Protocol_Record *
SL_Client::insert (const char *, int)
{
return this->prp_;
}
|