1
0

varmgr.h 314 B

1234567891011121314151617
  1. #ifndef __VARMGR_H
  2. #define __VARMGR_H
  3. #include <bfc/wasabi_std.h>
  4. class GuiObject;
  5. class Container;
  6. class WaComponent;
  7. class PublicVarManager {
  8. public:
  9. static StringW *translate_nocontext(const wchar_t *str);
  10. static StringW *translate(const wchar_t *str, GuiObject *o=NULL, Container *c=NULL);
  11. };
  12. #endif