-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinclude.php
27 lines (25 loc) · 1.03 KB
/
include.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* include.php - "include all" file for the application
*
* This is released under the MIT, see LICENSE for details
*
* @author Elizabeth M Smith <[email protected]>
* @copyright Elizabeth M Smith (c) 2012-2013
* @link http://gtkforphp.net
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @since Php 5.4.0
* @package G\Generator
* @subpackage cli
*/
include G_GEN_LIBPATH . 'getopt.php';
include G_GEN_LIBPATH . 'cli.php';
include G_GEN_LIBPATH . 'extension.php';
include G_GEN_LIBPATH . 'output.php';
include G_GEN_LIBPATH . 'objects' . DIRECTORY_SEPARATOR . 'module.php';
include G_GEN_LIBPATH . 'objects' . DIRECTORY_SEPARATOR . 'package.php'; // namespace
include G_GEN_LIBPATH . 'objects' . DIRECTORY_SEPARATOR . 'constant.php';
include G_GEN_LIBPATH . 'objects' . DIRECTORY_SEPARATOR . 'class.php';
include G_GEN_LIBPATH . 'objects' . DIRECTORY_SEPARATOR . 'method.php';
include G_GEN_LIBPATH . 'objects' . DIRECTORY_SEPARATOR . 'param.php';
include G_GEN_LIBPATH . 'objects' . DIRECTORY_SEPARATOR . 'retval.php';