comparison OrthancServer/Scheduler/IServerFilter.h @ 999:db18c071fbd7 lua-scripting

store-scu filter
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 04 Jul 2014 14:09:53 +0200
parents f0ac3a53ccf2
children
comparison
equal deleted inserted replaced
998:4136fab6a639 999:db18c071fbd7
32 32
33 #pragma once 33 #pragma once
34 34
35 #include <list> 35 #include <list>
36 #include <string> 36 #include <string>
37 #include <boost/noncopyable.hpp>
37 38
38 namespace Orthanc 39 namespace Orthanc
39 { 40 {
40 class IServerFilter 41 class IServerFilter : public boost::noncopyable
41 { 42 {
42 public: 43 public:
43 typedef std::list<std::string> ListOfStrings; 44 typedef std::list<std::string> ListOfStrings;
44 45
45 virtual ~IServerFilter() 46 virtual ~IServerFilter()