Sha256: d4088bb8703bc83ed979e596c6fcf35c39e0366a6eb08f65625017fd8e9d4fa5
Contents?: true
Size: 625 Bytes
Versions: 28
Compression:
Stored size: 625 Bytes
Contents
#include "stdafx.h" #include "RhoClassfactory.h" #include "sync/SyncThread.h" #include "sync/ClientRegister.h" #include "RhoCryptImpl.h" static rho::common::CRhoClassFactory g_oRhoClassFactory; rho::common::IRhoClassFactory* rho_get_RhoClassFactory() { return &g_oRhoClassFactory; } namespace rho{ namespace common{ IRhoCrypt* CRhoClassFactory::createRhoCrypt() { return new CRhoCryptImpl(); } } } extern "C" { void rho_clientregister_create(const char* szDevicePin) { rho::sync::CClientRegister::Create(szDevicePin); } void rho_clientregister_destroy() { rho::sync::CClientRegister::Destroy(); } };
Version data entries
28 entries across 28 versions & 1 rubygems