#ifndef ROOT_TRootAuth
#define ROOT_TRootAuth
#ifndef ROOT_TVirtualAuth
#include "TVirtualAuth.h"
#endif
class TSecContext;
class TSocket;
class TRootAuth : public TVirtualAuth {
public:
   TRootAuth() { }
   virtual ~TRootAuth() { }
   TSecContext *Authenticate(TSocket *, const char *host,
                             const char *user, Option_t *options = "");
   Int_t        ClientVersion();
   void         ErrorMsg(const char *where, Int_t ecode = -1);
   const char  *Name() { return TString("Root"); }
   ClassDef(TRootAuth,0)  
};
#endif
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.