2 // ReadTraceFileAction.hpp
5 // Created by James McIlree on 4/15/13.
6 // Copyright (c) 2014 Apple. All rights reserved.
9 #ifndef __kdprof__TraceFileAction__
10 #define __kdprof__TraceFileAction__
12 class ReadTraceFileAction : public Action {
17 ReadTraceFileAction(const char* path) : _path(path) {
18 ASSERT(Path::is_file(_path, TRUE), "File must exist");
21 virtual void execute(Globals& globals);
24 #endif /* defined(__msa__TraceFileAction__) */