]> git.saurik.com Git - apple/system_cmds.git/blob - msa/Action.hpp
43c48ab1969fc947bbe81ecaaeb64b973d85ec00
[apple/system_cmds.git] / msa / Action.hpp
1 //
2 // Action.hpp
3 // msa
4 //
5 // Created by James McIlree on 4/15/13.
6 // Copyright (c) 2014 Apple. All rights reserved.
7 //
8
9 #ifndef msa_Action_hpp
10 #define msa_Action_hpp
11
12 class Action {
13 public:
14 virtual void execute(Globals& globals) = 0;
15 };
16
17 #endif