Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef ParticlePainter_H
00012 #define ParticlePainter_H
00013
00014 #include "PainterPlugin.h"
00015
00016 #include "Messages/ParticleDataM.h"
00017
00018
00019
00025 class ParticlePainter: public PainterPlugin
00026 {
00027 Q_OBJECT
00028
00029 public:
00030
00032 ParticlePainter();
00033
00035 ~ParticlePainter();
00036
00038 virtual void paint ( float next2DLayer );
00039
00040 public slots:
00041
00043 virtual void processMessage ( Message* newMessage );
00044
00045 private:
00046
00047 std::vector<ParticleDataM::ParticleData> m_ParticleData;
00048
00049 };
00050
00051 #endif