#ifndef ROOT_TVirtualAuth
#define ROOT_TVirtualAuth
class TSecContext;
class TSocket;
class TVirtualAuth {
public:
TVirtualAuth() { }
virtual ~TVirtualAuth() { }
virtual TSecContext *Authenticate(TSocket *, const char *host,
const char *user, Option_t *options) = 0;
virtual Int_t ClientVersion() = 0;
virtual void ErrorMsg(const char *where, Int_t ecode) = 0;
virtual const char *Name() = 0;
ClassDef(TVirtualAuth,0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.