mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-13 06:03:37 +02:00
2018-01-30 Fred Gleason <fredg@paravelsystems.com>
* Added an 'RDApplication'class. * Converted rdlibrary(1) to use RDApplication.
This commit is contained in:
@@ -35,12 +35,24 @@ RDUser::RDUser(const QString &name)
|
||||
}
|
||||
|
||||
|
||||
RDUser::RDUser()
|
||||
{
|
||||
user_name="";
|
||||
}
|
||||
|
||||
|
||||
QString RDUser::name() const
|
||||
{
|
||||
return user_name;
|
||||
}
|
||||
|
||||
|
||||
void RDUser::setName(const QString &name)
|
||||
{
|
||||
user_name=name;
|
||||
}
|
||||
|
||||
|
||||
bool RDUser::exists() const
|
||||
{
|
||||
return RDDoesRowExist("USERS","LOGIN_NAME",user_name);
|
||||
|
Reference in New Issue
Block a user