summaryrefslogtreecommitdiff
path: root/Examples/php/sync/example.h
blob: 381473f2e11c2a8f28575eacf590181eb40d966b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <string>

extern std::string s;
extern int x;

class Sync {
  public:
    int x;
    std::string s;
    void printer();
    void all_change();

    Sync() : x(0) { }
};