Created
August 24, 2011 07:59
-
-
Save alecmce/1167531 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A ProcessStack is a utility that will wait run each process in order as added, | |
* running the subsequent process when it has completed | |
*/ | |
public class InitProcess extends ProcessStack | |
{ | |
public function InitProcess() | |
{ | |
add(InitModelProcess); | |
add(InitViewProcess); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment