summaryrefslogtreecommitdiff
path: root/zend/module.cpp
blob: 46d03d84f4a25e94407a3b516fe97608afda2ced (plain)
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
28
29
30
/**
 *  Module.cpp
 *
 *  Module implementation file
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2015 Copernica BV
 */
 
/**
 *  Dependencies
 */
#include "includes.h"

/**
 *  Set up namespace
 */
namespace Php {

/**
 *  The persistent handles
 *  @var Module::Persistent
 */
Module::Persistent Module::_persistent;

/**
 *  End of namespace
 */
}