15 lines
178 B
C
15 lines
178 B
C
|
|
#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) { }
|
||
|
|
};
|