create sha1_info

This commit is contained in:
2023-01-15 01:44:48 +01:00
parent e251a3ce51
commit 1dee83b01f
9 changed files with 221 additions and 60 deletions

View File

@@ -13,8 +13,8 @@
#include <string_view>
// fwd
namespace SendStates {
struct SHA1Start;
namespace States {
struct SendStartSHA1;
}
struct ToxClient {
@@ -71,6 +71,6 @@ struct ToxClient {
std::unique_ptr<StateI> _state;
// TODO: this is a hack, make better?
friend SendStates::SHA1Start;
friend States::SendStartSHA1;
};