More doxygen. This will be it for me for now.

This commit is contained in:
Jason Felds
2011-02-13 18:31:33 -05:00
parent 54d973b18a
commit 7e5f7253fc
4 changed files with 84 additions and 30 deletions
+15 -6
View File
@@ -3,25 +3,34 @@
class LoadingWindow;
/** @brief The collection of command line actions. */
namespace CommandLineActions
{
void Handle(LoadingWindow* pLW); // perform a utility action, then exit
/**
* @brief Perform a utility function, then exit.
* @param pLW the LoadingWindow that is presently not used? */
void Handle(LoadingWindow* pLW);
/** @brief The housing for the command line arguments. */
class CommandLineArgs
{
public:
/** @brief the arguments in question. */
vector<RString> argv;
};
// a list of command line arguemnts to process while the game is running.
// These args could have come from this process or passed to this process
// from another process.
/**
* @brief A list of command line arguemnts to process while the game is running.
* These args could have come from this process or passed to this process
* from another process. */
extern vector<CommandLineArgs> ToProcess;
}
#endif
/*
* (c) 2006 Chris Danford, Steve Checkoway
/**
* @file
* @author Chris Danford, Steve Checkoway (c) 2006
* @section LICENSE
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a