From 32bb72b527966c1b7324afcd7fae466fc84b30d6 Mon Sep 17 00:00:00 2001 From: buttercat1791 Date: Mon, 27 May 2024 12:09:41 -0500 Subject: refactor so no project header imports nostr.hpp --- include/signer/noscrypt_signer.hpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'include/signer/noscrypt_signer.hpp') diff --git a/include/signer/noscrypt_signer.hpp b/include/signer/noscrypt_signer.hpp index 1476303..cdee3fd 100644 --- a/include/signer/noscrypt_signer.hpp +++ b/include/signer/noscrypt_signer.hpp @@ -1,11 +1,15 @@ #pragma once +#include +#include + extern "C" { #include } -#include "signer.hpp" +#include "service/nostr_service_base.hpp" +#include "signer/signer.hpp" namespace nostr { @@ -14,7 +18,9 @@ namespace signer class NoscryptSigner : public INostrConnectSigner { public: - NoscryptSigner(std::shared_ptr appender); + NoscryptSigner( + std::shared_ptr appender, + std::shared_ptr nostrService); ~NoscryptSigner(); -- cgit