summaryrefslogtreecommitdiff
path: root/hhvm/extensionimpl.h
blob: 3444f8b9e5f4df8f2dac574e33f350b73241ba6a (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
 *  ExtensionImpl.h
 *
 *  Implementation of the extension object for the HHVM engine
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2014 Copernica BV
 */

/**
 *  Namespace
 */
namespace Php {

/**
 *  Class definition
 */
class ExtensionImpl : public ExtensionBase
{
private:
    /**
     *  Pointer to the extension object that is filled by the extension programmer
     *  @var    Extension
     */
    Extension *_data;
    
public:
    /**
     *  Constructor
     *  @param  data        Pointer to the extension object created by the extension programmer
     *  @param  name        Name of the extension
     *  @param  version     Version identifier of the extension
     *  @param  apiversion  API version number
     */
    ExtensionImpl(Extension *data, const char *name, const char *version, int apiversion) : ExtensionBase(data) {}
    
    /**
     *  Destructor
     */
    virtual ~ExtensionImpl() {}
    
    /**
     *  Pointer to the module that is loaded by HHVM
     *  @return void*
     */
    void *module()
    {
        return nullptr;
    }
};

/**
 *  End of namespace
 */
}