Skip to content
Snippets Groups Projects
Commit f2fde420 authored by jdh8d's avatar jdh8d
Browse files

No commit message

No commit message
parent 427af56c
No related branches found
No related tags found
No related merge requests found
......@@ -32,8 +32,20 @@
#define dollop_man_h
#include <dollop.h>
#include <set>
#include <map>
#include <list>
namespace Zipr_SDK {
typedef std::set<Dollop_t*> DollopList_t;
typedef std::map<libIRDB::Instruction_t*,Dollop_t*> InsnToDollopMap_t;
typedef std::list<DollopPatch_t*> DollopPatchList_t;
typedef std::map<Dollop_t*, DollopPatchList_t > DollopToDollopPatchListMap_t;
class DollopManager_t {
public:
DollopManager_t() {};
......@@ -85,8 +97,8 @@ class DollopManager_t {
* Return beginning and ending iterators for all the
* dollops under management.
*/
virtual std::list<Zipr_SDK::Dollop_t*>::const_iterator dollops_begin() = 0;
virtual std::list<Zipr_SDK::Dollop_t*>::const_iterator dollops_end() = 0;
virtual DollopList_t::iterator dollops_begin() = 0;
virtual DollopList_t::iterator dollops_end() = 0;
/*
* Print (for debugging) all the dollop patches
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment