summaryrefslogtreecommitdiff
path: root/zend/hashmember.cpp
blob: f6f8483ce17881928956da09c01de65e12b504a7 (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
/**
 *  HashMember.cpp
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @copyright 2013 Copernica BV
 */
#include "includes.h" 
 
/**
 *  Set up namespace
 */
namespace Php {
 
/**
 *  Custom output stream operator
 *  @param  stream
 *  @param  value
 *  @return ostream
 */
std::ostream &operator<<(std::ostream &stream, const HashMember<int> &value)
{
    return stream << value.value();
}

/**
 *  Custom output stream operator
 *  @param  stream
 *  @param  value
 *  @return ostream
 */
std::ostream &operator<<(std::ostream &stream, const HashMember<std::string> &value)
{
    return stream << value.value();
}

/**
 *  End of namespace
 */
}