]> git.saurik.com Git - apple/system_cmds.git/blame_incremental - kdprof/InitializeAction.hpp
system_cmds-671.10.3.tar.gz
[apple/system_cmds.git] / kdprof / InitializeAction.hpp
... / ...
CommitLineData
1//
2// InitializeAction.hpp
3// kdprof
4//
5// Created by James McIlree on 4/15/13.
6// Copyright (c) 2013 Apple. All rights reserved.
7//
8
9#ifndef kdprof_InitializeAction_hpp
10#define kdprof_InitializeAction_hpp
11
12class InitializeAction : public Action {
13 protected:
14 uint32_t _buffers;
15
16 public:
17 InitializeAction(uint32_t buffers) : _buffers(buffers) { }
18
19 virtual void execute(Globals& globals);
20};
21
22#endif