comparison Framework/Common/Dictionary.h @ 14:9774802fd05f

PostgreSQLStorageArea working
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Jul 2018 20:28:27 +0200
parents 7409bb3ef0f5
children 714c5d2bee76
comparison
equal deleted inserted replaced
13:927264a0c137 14:9774802fd05f
49 const std::string& utf8); 49 const std::string& utf8);
50 50
51 void SetBinaryValue(const std::string& key, 51 void SetBinaryValue(const std::string& key,
52 const std::string& binary); 52 const std::string& binary);
53 53
54 void SetFileValue(const std::string& key,
55 const std::string& file);
56
57 void SetFileValue(const std::string& key,
58 const void* content,
59 size_t size);
60
54 void SetIntegerValue(const std::string& key, 61 void SetIntegerValue(const std::string& key,
55 int64_t value); 62 int64_t value);
56 63
57 void SetNullValue(const std::string& key); 64 void SetNullValue(const std::string& key);
58 65