summaryrefslogtreecommitdiff
path: root/src/mixedobject.h
blob: 55a27ecc7a1cf4617782e5db11261159de071e83 (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
/**
 *  MixedObject.h
 *
 *  Structure that combines a Zend object with an object in C++
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */

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

/**
 *  Structure that combines a C++ object with a zend object
 */
struct MixedObject
{
    zend_object php;
    Base *cpp;
};

/**
 *  End of namespace
 */
}