#ifndef _SYBASELOGIN_H_
#define _SYBASELOGIN_H_

#include "sybobj.h"

@interface SybaseLogin : SybaseObject {
  char *_userName;
  LOGINREC *_login;
}

- initWith:(const char*) uName password: (const char*) passwd;
- (const char*) userName;
- (LOGINREC*) loginRec;
- free;

@end

#endif
