Sha256: aafeae260fafd822d2b78bad525bfb45253f75896d4f0557df022b1dd96b7e7a
Contents?: true
Size: 484 Bytes
Versions: 24
Compression:
Stored size: 484 Bytes
Contents
#include "RhoClassfactory.h" #include "sync/SyncThread.h" #include "sync/ClientRegister.h" namespace rho{ namespace common{ IRhoClassFactory* createClassFactory() { return new rho::common::CRhoClassFactory; } } } extern "C" { void rho_sync_create() { rho::sync::CSyncThread::Create(new rho::common::CRhoClassFactory); } void rho_clientregister_create(const char* szDevicePin) { rho::sync::CClientRegister::Create(new rho::common::CRhoClassFactory, szDevicePin); } };
Version data entries
24 entries across 24 versions & 1 rubygems