Mercurial > hg > orthanc
comparison Plugins/Engine/PluginsHttpHandler.h @ 1066:bb82e5e818e9
OnStoredInstance callback in plugins
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 25 Jul 2014 18:39:02 +0200 |
parents | 8d1845feb277 |
children | a91b4900f06a |
comparison
equal
deleted
inserted
replaced
1065:921532f67770 | 1066:bb82e5e818e9 |
---|---|
48 private: | 48 private: |
49 struct PImpl; | 49 struct PImpl; |
50 | 50 |
51 boost::shared_ptr<PImpl> pimpl_; | 51 boost::shared_ptr<PImpl> pimpl_; |
52 | 52 |
53 char* CopyString(const std::string& str) const; | 53 void RegisterRestCallback(const void* parameters); |
54 | 54 |
55 void RegisterRestCallback(const void* parameters); | 55 void RegisterOnStoredInstanceCallback(const void* parameters); |
56 | 56 |
57 void AnswerBuffer(const void* parameters); | 57 void AnswerBuffer(const void* parameters); |
58 | 58 |
59 void Redirect(const void* parameters); | 59 void Redirect(const void* parameters); |
60 | 60 |
92 const std::string& postData); | 92 const std::string& postData); |
93 | 93 |
94 virtual bool InvokeService(_OrthancPluginService service, | 94 virtual bool InvokeService(_OrthancPluginService service, |
95 const void* parameters); | 95 const void* parameters); |
96 | 96 |
97 void SignalStoredInstance(DicomInstanceToStore& instance, | |
98 const std::string& instanceId); | |
99 | |
97 void SetOrthancRestApi(OrthancRestApi& restApi); | 100 void SetOrthancRestApi(OrthancRestApi& restApi); |
98 }; | 101 }; |
99 } | 102 } |