From cb854be065a3fd5858160ef7c7093515af62456b Mon Sep 17 00:00:00 2001 From: jdh8d <jdh8d@git.zephyr-software.com> Date: Tue, 31 May 2016 14:02:25 +0000 Subject: [PATCH] Added support for placing scoops in a zipr plugin. fix-call comments --- include/zipr_plugin.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/zipr_plugin.h b/include/zipr_plugin.h index 91da31c..1c7f826 100644 --- a/include/zipr_plugin.h +++ b/include/zipr_plugin.h @@ -67,6 +67,15 @@ class ZiprPluginInterface_t { return None; } + virtual RangeAddress_t PlaceScoopsBegin(const RangeAddress_t max_addr) + { + return max_addr; + } + virtual RangeAddress_t PlaceScoopsEnd(const RangeAddress_t max_addr) + { + return max_addr; + } + }; } -- GitLab