| Cache | Handles writing to and from the cache | 
	| Configure | Allows statically configured settings to be stored and accessed on a per-use
basis. The purpose of this class is to utilize globally set configurations from
a single location. Configurations can be set by default in /config/core.php, or
may be set at run time from anywhere within your application. | 
	| Controller | This class is extended by the various controllers, and makes available methods
that allow controllers to interact with views, models, components, helpers, and
plugins. | 
	| Dispatcher | This class is invoked by the driver (index.php) and handles dispatching of
requests to the proper controller. It extends Controller only so that it can
invoke its protected methods. | 
	| Language | Provides a set of static methods to aid in the use of multi-language support.
Supports the use of multiple simultaneous languages, including a default
(fallback) language. When the definition can not be found in the set of primary
keys, the default is used instead. | 
	| Loader | Handles the loading of various files and objects | 
	| Model | This class establishes and maintains a connection to a PDO resource, and
provides methods for interacting with that resource | 
	| Router | Handles mapping of URIs from one type to another | 
	| View | Allows the creation of views. |