diff options
Diffstat (limited to 'trunk/Examples/php/sync/example.h')
-rw-r--r-- | trunk/Examples/php/sync/example.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/trunk/Examples/php/sync/example.h b/trunk/Examples/php/sync/example.h new file mode 100644 index 000000000..d67ec21dc --- /dev/null +++ b/trunk/Examples/php/sync/example.h @@ -0,0 +1,9 @@ +extern char *s; +extern int x; + +class Sync { + public: + int x; + char *s; + void printer(void); +}; |