// // Copyright (c) 2013 Samsung Electronics Co., Ltd. // // Licensed under the Apache License, Version 2.0 (the License); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // /** * @file FScl_AccountManagerImpl.h * @brief This is the header file for the %_AccountManagerImpl class. * * This header file contains the declarations of the %_AccountManagerImpl class. */ #ifndef _FSCL_INTERNAL_ACCOUNT_MANAGER_IMPL_H_ #define _FSCL_INTERNAL_ACCOUNT_MANAGER_IMPL_H_ #include #include #include namespace Tizen { namespace Social { class Account; class AccountManager; class _AccountManagerImpl : public Tizen::Base::Object { public: _AccountManagerImpl(void); virtual ~_AccountManagerImpl(void); result Construct(void); result AddAccount(Account& account); result RemoveAccount(AccountId accountId); result UpdateAccount(const Account& account); static _AccountManagerImpl* GetInstance(AccountManager& accountManager); static const _AccountManagerImpl* GetInstance(const AccountManager& accountManager); private: _AccountManagerImpl& operator =(const _AccountManagerImpl& rhs); _AccountManagerImpl(const _AccountManagerImpl& rhs); }; // _AccountManagerImpl }} // Tizen::Social #endif //_FSCL_INTERNAL_ACCOUNT_MANAGER_IMPL_H_