libs/sqplus/testSqPlus2unit/globals.hpp

16 lines
323 B
C++
Raw Normal View History

2017-01-10 04:08:49 +00:00
#ifndef GLOBALS_HPP
#define GLOBALS_HPP
class GlobalClass {
public:
void func(const SQChar *s,int val) {
scprintf(_SC("GlobalClass::func(s, val): s: %s val: %d\n"),s,val);
} // func
};
extern GlobalClass globalClass;
extern int globalVar;
void globalFunc(const SQChar *s, int val);
#endif // GLOBALS_HPP