]> git.saurik.com Git - apple/system_cmds.git/blobdiff - kdprof/InitializeAction.hpp
system_cmds-643.30.1.tar.gz
[apple/system_cmds.git] / kdprof / InitializeAction.hpp
diff --git a/kdprof/InitializeAction.hpp b/kdprof/InitializeAction.hpp
new file mode 100644 (file)
index 0000000..ac594de
--- /dev/null
@@ -0,0 +1,22 @@
+//
+//  InitializeAction.hpp
+//  kdprof
+//
+//  Created by James McIlree on 4/15/13.
+//  Copyright (c) 2013 Apple. All rights reserved.
+//
+
+#ifndef kdprof_InitializeAction_hpp
+#define kdprof_InitializeAction_hpp
+
+class InitializeAction : public Action {
+    protected:
+       uint32_t _buffers;
+
+    public:
+       InitializeAction(uint32_t buffers) : _buffers(buffers) { }
+
+       virtual void execute(Globals& globals);
+};
+
+#endif