comparison OrthancServer/ServerToolbox.h @ 3089:fb8ee0786b1e db-changes

new extension for database plugin SDK: setResourcesContent
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 05 Jan 2019 11:39:31 +0100
parents d498ece73562
children 61da3c9b4121
comparison
equal deleted inserted replaced
3088:d498ece73562 3089:fb8ee0786b1e
125 // WARNING: The database should be locked with a transaction! 125 // WARNING: The database should be locked with a transaction!
126 void Store(Compatibility::ISetResourcesContent& target) const; 126 void Store(Compatibility::ISetResourcesContent& target) const;
127 127
128 // WARNING: The resulting C structure will contain pointers to the 128 // WARNING: The resulting C structure will contain pointers to the
129 // current object. Don't delete or modify it! 129 // current object. Don't delete or modify it!
130 void EncodeForPlugins(std::vector<OrthancPluginResourcesContentTags>& tags, 130 void EncodeForPlugins(
131 std::vector<OrthancPluginResourcesContentMetadata>& metadata) const; 131 std::vector<OrthancPluginResourcesContentTags>& identifierTags,
132 std::vector<OrthancPluginResourcesContentTags>& mainDicomTags,
133 std::vector<OrthancPluginResourcesContentMetadata>& metadata) const;
132 }; 134 };
133 135
134 136
135 namespace ServerToolbox 137 namespace ServerToolbox
136 { 138 {