CCF
CCF copied to clipboard
Nest all public CCF code under `ccf` namespace
We currently define CCF types in various namespaces, along historic divisions in the codebase. This introduces some confusion for consumers in finding the correct name for our types, and may lead to naming conflicts in C++ projects with other large dependencies.
Ideally we should move everything under ccf::, nested as appropriate (eg ccf::kv::, ccf::crypto::).
For an approximation of the namespaces exposed by our public headers:
$ find . -type f | xargs grep -h -e "namespace" | sort -u
namespace ccf
namespace ccf::endpoints
namespace ccf::historical
namespace ccf::indexing
namespace ccf::indexing::strategies
namespace ccf::js
namespace ccfapp
namespace crypto
namespace ds
namespace enclave
namespace http
namespace kv
namespace kv::serialisers
namespace logger
namespace nonstd
namespace serdes
namespace siphash
namespace std
namespace threading