Rename runtime/base/zend_* to zend-
[hiphop-php.git] / hphp / runtime / base / hphp_system.h
blob998edaae7b000c0b4a30b4a380296e00ad4ee554
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
6 | Copyright (c) 1998-2010 Zend Technologies Ltd. (http://www.zend.com) |
7 +----------------------------------------------------------------------+
8 | This source file is subject to version 2.00 of the Zend license, |
9 | that is bundled with this package in the file LICENSE, and is |
10 | available through the world-wide-web at the following url: |
11 | http://www.zend.com/license/2_00.txt. |
12 | If you did not receive a copy of the Zend license and are unable to |
13 | obtain it through the world-wide-web, please send a note to |
14 | license@zend.com so we can mail you a copy immediately. |
15 +----------------------------------------------------------------------+
18 #ifndef incl_HPHP_CPP_BASE_HPHP_SYSTEM_H_
19 #define incl_HPHP_CPP_BASE_HPHP_SYSTEM_H_
21 ///////////////////////////////////////////////////////////////////////////////
23 /**
24 * This is the file that's included at top of a code generated system file.
27 #include "hphp/runtime/base/macros.h"
28 #include "hphp/runtime/base/zend-functions.h"
29 #include "hphp/util/exception.h"
30 #include "hphp/runtime/base/type_conversions.h"
31 #include "hphp/runtime/base/builtin_functions.h"
32 #include "hphp/runtime/base/comparisons.h"
33 #include "hphp/runtime/base/smart_object.h"
34 #include "hphp/runtime/base/list_assignment.h"
35 #include "hphp/runtime/base/complex_types.h"
36 #include "hphp/runtime/base/string_util.h"
37 #include "hphp/util/util.h"
38 #include "hphp/runtime/base/plain_file.h"
39 #include "hphp/runtime/base/class_info.h"
40 #include "hphp/runtime/base/externals.h"
41 #include "hphp/runtime/base/array_init.h"
42 #include "hphp/runtime/base/array_iterator.h"
43 #include "hphp/runtime/base/string_buffer.h"
44 #include "hphp/runtime/base/simple_counter.h"
45 #include "hphp/util/shm_counter.h"
47 namespace HPHP {
48 ///////////////////////////////////////////////////////////////////////////////
50 const char* getHphpCompilerVersion();
51 const char* getHphpCompilerId();
53 ///////////////////////////////////////////////////////////////////////////////
54 } // namespace HPHP
56 #endif // incl_HPHP_CPP_BASE_HPHP_SYSTEM_H_