Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
lrc.h 3.49 KiB
/****************************************************************************
* Copyright (C) 2017-2019 Savoir-faire Linux Inc. *
* Author: Nicolas Jäger <nicolas.jager@savoirfairelinux.com> *
* Author: Sébastien Blin <sebastien.blin@savoirfairelinux.com> *
* *
* 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) any later version. *
* *
* 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 General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#pragma once
// Std
#include <memory>
#include <vector>
#include <string>
// Lrc
#include "typedefs.h"
namespace lrc
{
class LrcPimpl;
namespace api
{
class BehaviorController;
class NewAccountModel;
class DataTransferModel;
class AVModel;
class LIB_EXPORT Lrc {
public:
/**
* Construct an Lrc object and optionally invoke callbacks
* to control ui informing the user of a possibly lengthy
* migration process.
* @param willMigrateCb
* @param didMigrateCb
*/
Lrc(MigrationCb willMigrateCb = {},
MigrationCb didMigrateCb = {});
~Lrc();
/**
* get a reference on account model.
* @return a NewAccountModel&.
*/
NewAccountModel& getAccountModel() const;
/**
* get a reference on the behavior controller.
* @return a BehaviorController&.
*/
BehaviorController& getBehaviorController() const;
/**
* get a reference on the DataTransfer controller.
* @return a DataTransferModel&.
*/
DataTransferModel& getDataTransferModel() const;
/**
* get a reference on the audio-video controller.