summaryrefslogtreecommitdiff
path: root/include/parameters.h
blob: 138d973bdd792d43092cf2126ab662dc77ada8c4 (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
/**
 *  Parameters.h
 *
 *  Wrapper around parameters that are passed to a 
 
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */

/**
 *  Namespace
 */
namespace Php {

/**
 *  Class definition
 */
class Parameters : public std::vector<Value>
{
public:
    /**
     *  Constructor
     *  @param  argc    Number of arguments
     *  @param  tsrm_ls
     */
    Parameters(int argc);// TSRMLS_DC);

    /**
     *  Destructor
     */
    virtual ~Parameters() {}
};

/**
 *  End of namespace
 */
}