summaryrefslogtreecommitdiff
path: root/Examples/CppClassesInPhp/includes.h
blob: aa1e65afd5b17e1a32f81597b6204e414f30ed72 (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
/**
 *	The includes.h
 */

/**
 * 	Default Cpp libraries
 */
 
#include <string>
#include <iostream>

/**
 * 	Our own library.
 */
#include <phpcpp.h>

/**
 *  Namespace to use
 */
using namespace std;

/**
 * 	The test class.
 */
#include "mycustomclass.h"