]> git.saurik.com Git - apple/system_cmds.git/blobdiff - msa/Action.hpp
system_cmds-643.30.1.tar.gz
[apple/system_cmds.git] / msa / Action.hpp
diff --git a/msa/Action.hpp b/msa/Action.hpp
new file mode 100644 (file)
index 0000000..43c48ab
--- /dev/null
@@ -0,0 +1,17 @@
+//
+//  Action.hpp
+//  msa
+//
+//  Created by James McIlree on 4/15/13.
+//  Copyright (c) 2014 Apple. All rights reserved.
+//
+
+#ifndef msa_Action_hpp
+#define msa_Action_hpp
+
+class Action {
+    public:
+       virtual void execute(Globals& globals) = 0;
+};
+
+#endif