diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-09-01 18:22:57 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-09-01 18:22:57 +0000 |
commit | 1719a56dc3b872e8238b8ea945b5a1f934bde031 (patch) | |
tree | d3d2f7f0b70b5e1c323858a9743e9c535b204706 /gem2pdp/gem2pdp.h | |
parent | e5333824d29ee2a92ec2c474bffe03d83dac8d73 (diff) |
moved gem2pdp to the CVSROOT/externals/
svn path=/trunk/externals/unauthorized/; revision=922
Diffstat (limited to 'gem2pdp/gem2pdp.h')
-rw-r--r-- | gem2pdp/gem2pdp.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/gem2pdp/gem2pdp.h b/gem2pdp/gem2pdp.h deleted file mode 100644 index d1cf3cf..0000000 --- a/gem2pdp/gem2pdp.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * gem2pdp : gem to pdp bridge - * - * Capture the contents of the Gem window and transform it to a PDP Packet whenever a bang is received - * - * Copyright (c) 2003 Yves Degoyon - * - */ - -#ifndef INCLUDE_GEM2PDP_H_ -#define INCLUDE_GEM2PDP_H_ - -#include "Base/GemBase.h" -#include "Base/GemPixUtil.h" -#include "pdp-light.h" - -class GEM_EXTERN gem2pdp : public GemBase -{ - CPPEXTERN_HEADER(gem2pdp, GemBase) - - public: - gem2pdp(void); - - protected: - imageStruct *m_image; - int m_x; - int m_y; - int m_width; - int m_height; - t_outlet *m_pdpoutlet; - virtual ~gem2pdp(void); - virtual void bangMess(void); - virtual void render(GemState *state); - void cleanImage(); - t_int m_packet0; - t_pdp *m_header; - short int *m_data; - - private: - static void bangMessCallback(void *data); -}; - -#endif |