imggen.h 265 B

1234567891011121314
  1. #ifndef _IMGGEN_H
  2. #define _IMGGEN_H
  3. #include "../studio/wac.h"
  4. #define WACNAME WACimggen
  5. class WACNAME : public WAComponentClient {
  6. public:
  7. WACNAME();
  8. virtual const char *getName() { return "Standard Image Generators"; };
  9. virtual GUID getGUID();
  10. };
  11. #endif