1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/** \file factory.cpp
\brief Define the factory to create new instance
\author alpha_one_x86 */
#include "../../../cpp11addition.h"
#include "CopyEngineFactory.h"
CopyEngineFactory::CopyEngineFactory()
{
}
CopyEngineFactory::~CopyEngineFactory()
{
}
PluginInterface_CopyEngine * CopyEngineFactory::getInstance()
{
CopyEngine *realObject=new CopyEngine();
return realObject;
}
void CopyEngineFactory::setResources(OptionInterface * options,const std::string &writePath,const std::string &pluginPath,
FacilityInterface * facilityInterface,const bool &portableVersion)
{
(void)options;
(void)writePath;
(void)pluginPath;
(void)facilityInterface;
(void)portableVersion;
}
std::vector<std::string> CopyEngineFactory::supportedProtocolsForTheSource() const
{
std::vector<std::string> l;
l.push_back("file");
return l;
}
std::vector<std::string> CopyEngineFactory::supportedProtocolsForTheDestination() const
{
std::vector<std::string> l;
l.push_back("file");
return l;
}
Ultracopier::CopyType CopyEngineFactory::getCopyType()
{
return Ultracopier::FileAndFolder;
}
Ultracopier::TransferListOperation CopyEngineFactory::getTransferListOperation()
{
return Ultracopier::TransferListOperation_ImportExport;
}
bool CopyEngineFactory::canDoOnlyCopy() const
{
return false;
}
void CopyEngineFactory::resetOptions()
{
}
QWidget * CopyEngineFactory::options()
{
return nullptr;
}
/// \brief to get if have pause
bool CopyEngineFactory::havePause()
{
return false;
}
void CopyEngineFactory::newLanguageLoaded()
{
}
|