syncevolution/src/CmdlineSyncClient.h
Patrick Ohly f87ffd682d introduced "namespace SyncEvo" consistently
Added syncevo/declarations.h, which has

This is now used for all SyncEvolution source files, except
for the GTK UI, which is written in plain C. In the library
it helps to avoid name clashes.

The reason for using defines instead of spelling out "namespace SyncEvo"
is twofold:
1. if that should ever become necessary, it is easier to
   rename the namespace via configure options by changing
   the define
2. editors don't indent the whole file content
2009-10-02 17:27:45 +02:00

58 lines
2 KiB
C++

/*
* Copyright (C) 2009 Intel Corporation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) version 3.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef INCL_CMDLINESYNCCLIENT
#define INCL_CMDLINESYNCCLIENT
#include "EvolutionSyncClient.h"
#include "syncevo/declarations.h"
SE_BEGIN_CXX
/**
* a command line sync client for the purpose of
* supporting a mechanism to save and retrieve password
* in keyring.
*/
class CmdlineSyncClient : public EvolutionSyncClient {
public:
CmdlineSyncClient(const string &server,
bool doLogging = false,
const set<string> &sources = set<string>(),
bool useKeyring = false);
using EvolutionSyncConfig::savePassword;
/**
* These 2 functions are from ConfigUserInterface and implement it
* to use keyring to retrieve and save password in the keyring.
*/
virtual string askPassword(const string &passwordName, const string &descr, const ConfigPasswordKey &key);
virtual bool savePassword(const string &passwordName, const string &password, const ConfigPasswordKey &key);
void setKeyring(bool keyring) { m_keyring = keyring; }
bool getKeyring() const { return m_keyring; }
private:
/** a bool flag used to indicate whether to use keyring to store password */
bool m_keyring;
};
SE_END_CXX
#endif // INCL_CMDLINESYNCCLIENT