]> git.saurik.com Git - apple/system_cmds.git/blame - msa/Action.hpp
system_cmds-643.30.1.tar.gz
[apple/system_cmds.git] / msa / Action.hpp
CommitLineData
bd6521f0
A
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
12class Action {
13 public:
14 virtual void execute(Globals& globals) = 0;
15};
16
17#endif