aboutsummaryrefslogtreecommitdiff
path: root/subhook.h
diff options
context:
space:
mode:
Diffstat (limited to 'subhook.h')
-rw-r--r--subhook.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/subhook.h b/subhook.h
index 0777930..483ea9e 100644
--- a/subhook.h
+++ b/subhook.h
@@ -189,6 +189,10 @@ public:
}
private:
+ ScopedRemove(const ScopedRemove &);
+ void operator=(const ScopedRemove &);
+
+ private:
SubHook *hook_;
bool removed_;
};
@@ -208,6 +212,10 @@ public:
}
private:
+ ScopedInstall(const ScopedInstall &);
+ void operator=(const ScopedInstall &);
+
+ private:
SubHook *hook_;
bool installed_;
};