]> git.saurik.com Git - apple/system_cmds.git/blobdiff - kdprof/TraceFileAction.hpp
system_cmds-735.tar.gz
[apple/system_cmds.git] / kdprof / TraceFileAction.hpp
diff --git a/kdprof/TraceFileAction.hpp b/kdprof/TraceFileAction.hpp
deleted file mode 100644 (file)
index b91d369..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-//  TraceFileAction.h
-//  kdprof
-//
-//  Created by James McIlree on 4/15/13.
-//  Copyright (c) 2013 Apple. All rights reserved.
-//
-
-#ifndef __kdprof__TraceFileAction__
-#define __kdprof__TraceFileAction__
-
-class TraceFileAction : public Action {
-    protected:
-       std::string _path;
-       
-    public:
-       TraceFileAction(const char* path) : _path(path) {
-               ASSERT(Path::is_file(_path, TRUE), "File must exist");
-       }
-
-       virtual void execute(Globals& globals);
-};
-
-#endif /* defined(__kdprof__TraceFileAction__) */