comparison Framework/Plugins/StorageBackend.h @ 14:9774802fd05f

PostgreSQLStorageArea working
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Jul 2018 20:28:27 +0200
parents 41543239072d
children 9e419261f1c9
comparison
equal deleted inserted replaced
13:927264a0c137 14:9774802fd05f
69 OrthancPluginContentType type) = 0; 69 OrthancPluginContentType type) = 0;
70 70
71 static void Register(OrthancPluginContext* context, 71 static void Register(OrthancPluginContext* context,
72 StorageBackend* backend); // Takes ownership 72 StorageBackend* backend); // Takes ownership
73 73
74 // For unit testing!
75 void ReadToString(std::string& content,
76 DatabaseManager::Transaction& transaction,
77 const std::string& uuid,
78 OrthancPluginContentType type);
79
74 static void Finalize(); 80 static void Finalize();
75 }; 81 };
76 } 82 }