]> git.saurik.com Git - apple/system_cmds.git/blob - kdprof/DisableAction.hpp
cc87c4608965cda93cde6813753467fd959fbbe0
[apple/system_cmds.git] / kdprof / DisableAction.hpp
1 //
2 // DisableAction.hpp
3 // kdprof
4 //
5 // Created by James McIlree on 4/16/13.
6 // Copyright (c) 2013 Apple. All rights reserved.
7 //
8
9 #ifndef kdprof_DisableAction_hpp
10 #define kdprof_DisableAction_hpp
11
12 class DisableAction : public Action {
13 public:
14 DisableAction() {}
15
16 virtual void execute(Globals& globals);
17 };
18
19 #endif