comparison PostgreSQL/Plugins/PostgreSQLStorageArea.h @ 16:9e419261f1c9

mysql storage area working
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Jul 2018 10:10:35 +0200
parents 9774802fd05f
children 714c5d2bee76
comparison
equal deleted inserted replaced
15:dfc7002add9c 16:9e419261f1c9
62 62
63 void SetClearAll(bool clear) 63 void SetClearAll(bool clear)
64 { 64 {
65 clearAll_ = clear; 65 clearAll_ = clear;
66 } 66 }
67
68 virtual void Create(DatabaseManager::Transaction& transaction,
69 const std::string& uuid,
70 const void* content,
71 size_t size,
72 OrthancPluginContentType type);
73
74 virtual void Read(void*& content,
75 size_t& size,
76 DatabaseManager::Transaction& transaction,
77 const std::string& uuid,
78 OrthancPluginContentType type);
79
80 virtual void Remove(DatabaseManager::Transaction& transaction,
81 const std::string& uuid,
82 OrthancPluginContentType type);
83 }; 67 };
84 } 68 }