From 9f745d6175396985acd11e38ab7ad0335ea2ff8b Mon Sep 17 00:00:00 2001 From: _ <_@_> Date: Sun, 17 Jan 2021 20:52:36 -0600 Subject: [PATCH] :construction: wip --- bare_minimum_crypto/cpp/sender.cpp | 7 +++++++ bare_minimum_crypto/cpp/sender.h | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 bare_minimum_crypto/cpp/sender.cpp create mode 100644 bare_minimum_crypto/cpp/sender.h diff --git a/bare_minimum_crypto/cpp/sender.cpp b/bare_minimum_crypto/cpp/sender.cpp new file mode 100644 index 0000000..c105623 --- /dev/null +++ b/bare_minimum_crypto/cpp/sender.cpp @@ -0,0 +1,7 @@ +#include "sender.h" + +namespace BareMinimumCrypto { + using namespace std; + + +} diff --git a/bare_minimum_crypto/cpp/sender.h b/bare_minimum_crypto/cpp/sender.h new file mode 100644 index 0000000..ae1c52f --- /dev/null +++ b/bare_minimum_crypto/cpp/sender.h @@ -0,0 +1,5 @@ +#pragma once + +namespace BareMinimumCrypto { + +}