15 static constexpr
const std::string_view
TABLE_NAME =
"Encryptions";
28 constexpr
bool operator==(const
Encryption& e) const noexcept {
return ide == e.ide; }
31 <<
"Encryptions(ide: " << e.ide <<
','
32 <<
"algo: " << int(e.algo) <<
','
33 <<
"title: " << e.title <<
','
34 <<
"date_time: " << e.date_time <<
','
35 <<
"is_file: " << std::boolalpha << e.is_file <<
','
36 <<
"file_ext:" << e.file_ext <<
')';
39 std::ostringstream oss{};
#define NS_ENIGMA_BEGIN
Enable/Disable Assertions.
friend std::ostream & operator<<(std::ostream &os, const Encryption &e) noexcept
std::string toString() noexcept
~Encryption() noexcept=default
static constexpr const std::string_view TABLE_NAME