Я делаю приложение на React-native, которое использует Djinni из Dropbox для соединения C ++ и Javascript.Вызов из Javascript в C ++ работает хорошо, но сейчас я реализую Call из C ++ в Java / ObjC, мои навыки в C ++ такие-то и такие-то.Так что я застрял на инициализации метода класса.Я основываюсь на примере Джинни.AnotherClassMain - это точка доступа из Javascript в C ++.
Я хочу вызвать метод runAProcess из processAImpl внутри anotherClassMain.
Но я получаю сообщение об ошибке Поле типа 'aEditing :: ProcessAImpl' является абстрактным классомНа линии ProcesAImpl processA;в anotherClassMain.hpp
Как я могу получить доступ к этому инициировать класс processAImpl и вызвать runAProcess из anotherClassMain ??
// processA.hpp, созданного djinni
#pragma once
#include <string>
namespace aEditing {
class ProcessA {
public:
virtual ~ProcessA() {}
virtual bool runThisProcess(const std::string & str) = 0;
};
}
//processAImpl.hpp
#pragma once
#include "processA.hpp"
namespace aEditing {
class ProcessAImpl : public ProcessA {
public:
ProcessAImpl(const std::shared_ptr<ProcessA> & listener);
void runAProcess(const std::string aCommand);
private:
std::shared_ptr<ProcessA> aProcess;
};
}
// processAImpl.cpp
#include "procesAImpl.hpp"
namespace aEditing {
ProcessAImpl::ProcessAImpl (const std::shared_ptr<ProcessA> & listener) {
this->aProcess = listener;
}
void ProcessAImpl::runAProcess(const std::string aCommand) {
this->aProcess->runThisProcess(aCommand);
}
}
// anotherClassMain.hpp
#pragma once
#include "includes.hpp"
#include "processAImpl.hpp"
namespace anotherProcessing {
class AnotherProcessingMain: public anotherProcessing::AnotherProcessing {
public:
AnotherProcessingMain();
string anotherProcessing(const std::string &Input, const std::string &output) override;
private:
ProcesAImpl processA;
};
}
// anotherClassMain.cpp
#include "anotherClassMain.hpp"
namespace anotherProcessing {
shared_ptr<AnotherProcessing> AnotherProcessing::create() {
return make_shared<AnotherProcessingMain>();
}
AnotherProcessingMain::AnotherProcessingMain() {}
string AnotherProcessingMain::anotherProcessing(const std::string &Input, const std::string &output){
processA.runAProcess("testCommand"); //Trying to access this!
return "yeah";
}