summaryrefslogtreecommitdiff
path: root/zend/constant.cpp
blob: 83a4de095c57dbd28972d6522382848144471e8f (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
 *  Constant.cpp
 * 
 *  Implementation file for the constant class
 *  
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2015 Copernica BV
 */
#include "includes.h"

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

/**
 *  Constructor
 *  @param  name            Constant name
 *  @param  value           Constant value
 */
Constant::Constant(const char *name, std::nullptr_t value) : 
    _impl(new ConstantImpl(name, value)) {}
    
/**
 *  Constructor
 *  @param  name            Constant name
 *  @param  value           Constant value
 */
Constant::Constant(const char *name, bool value) : 
    _impl(new ConstantImpl(name, value)) {}

/**
 *  Constructor
 *  @param  name            Constant name
 *  @param  value           Constant value
 */
Constant::Constant(const char *name, int32_t value) : 
    _impl(new ConstantImpl(name, value)) {}

/**
 *  Constructor
 *  @param  name            Constant name
 *  @param  value           Constant value
 */
Constant::Constant(const char *name, int64_t value) : 
    _impl(new ConstantImpl(name, value)) {}

/**
 *  Constructor
 *  @param  name            Constant name
 *  @param  value           Constant value
 */
Constant::Constant(const char *name, double value) : 
    _impl(new ConstantImpl(name, value)) {}

/**
 *  Constructor
 *  @param  name            Constant name
 *  @param  value           Constant value
 */
Constant::Constant(const char *name, const char *value) : 
    _impl(new ConstantImpl(name, value)) {}

/**
 *  Constructor
 *  @param  name            Constant name
 *  @param  value           Constant value
 *  @param  size            Value size
 */
Constant::Constant(const char *name, const char *value, size_t size) : 
    _impl(new ConstantImpl(name, value, size)) {}

/**
 *  Constructor
 *  @param  name            Constant name
 *  @param  value           Constant value
 */
Constant::Constant(const char *name, const std::string &value) : 
    _impl(new ConstantImpl(name, value)) {}

/**
 *  End of namespace
 */
}