25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kshowmail/kshowmail/tdewalletaccess.h

46 lines
1.0 KiB

//
// C++ Interface: tdewalletaccess
//
// Author: Ulrich Weigelt <ulrich.weigelt@gmx.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KWALLETACCESS_H
#define KWALLETACCESS_H
//TQt headers
#include <ntqstring.h>
//KDE headers
#include <tdewallet.h>
#include <tdemessagebox.h>
#include <kdebug.h>
#include <tdelocale.h>
/**
* @brief Provides routines to save and read passwords using TDEWallet.
* @author Ulrich Weigelt <ulrich.weigelt@gmx.de>
*/
namespace TDEWalletAccess
{
/**
* Saves the given password into TDEWallet.
* @param account account name
* @param password the password
* @return TRUE - password successfully saved
* @return FALSE - password could not be saved
*/
bool savePassword( const TQString& account, const TQString& password );
/**
* Returns the password of the given account.
* @param account account name
* @return the password or TQString::null, if the sought password is not stored in TDEWallet.
*/
TQString getPassword( const TQString& account );
}
#endif