X-Git-Url: https://git.saurik.com/apple/system_cmds.git/blobdiff_plain/1a7e3f61d38d679bba59130891c2031b5a0092b6..bd6521f0fc816ab056bc71376f9706a69b3b52c1:/kdprof/DisableAction.hpp diff --git a/kdprof/DisableAction.hpp b/kdprof/DisableAction.hpp new file mode 100644 index 0000000..cc87c46 --- /dev/null +++ b/kdprof/DisableAction.hpp @@ -0,0 +1,19 @@ +// +// DisableAction.hpp +// kdprof +// +// Created by James McIlree on 4/16/13. +// Copyright (c) 2013 Apple. All rights reserved. +// + +#ifndef kdprof_DisableAction_hpp +#define kdprof_DisableAction_hpp + +class DisableAction : public Action { + public: + DisableAction() {} + + virtual void execute(Globals& globals); +}; + +#endif