comparison Plugin/ViewerPrefetchPolicy.h @ 289:4b80ddccec54

sync, cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Dec 2020 15:23:54 +0100
parents aee499712ac4
children e376158e2dbb
comparison
equal deleted inserted replaced
288:0f5c02eebe20 289:4b80ddccec54
20 20
21 21
22 #pragma once 22 #pragma once
23 23
24 #include "Cache/IPrefetchPolicy.h" 24 #include "Cache/IPrefetchPolicy.h"
25
26 #include <Compatibility.h>
25 27
26 #include <orthanc/OrthancCPlugin.h> 28 #include <orthanc/OrthancCPlugin.h>
27 29
28 namespace OrthancPlugins 30 namespace OrthancPlugins
29 { 31 {
48 } 50 }
49 51
50 virtual void Apply(std::list<CacheIndex>& toPrefetch, 52 virtual void Apply(std::list<CacheIndex>& toPrefetch,
51 CacheScheduler& cache, 53 CacheScheduler& cache,
52 const CacheIndex& accessed, 54 const CacheIndex& accessed,
53 const std::string& content); 55 const std::string& content) ORTHANC_OVERRIDE;
54 }; 56 };
55 } 57 }