ArtMOO
|
00001 #ifndef INPUTSINKPROGRAM_H 00002 #define INPUTSINKPROGRAM_H 00003 00004 #include "inputsink.h" 00005 00006 class Connection; 00007 class Object; 00008 class Verb; 00009 00010 class InputSinkProgram : public InputSink 00011 { 00012 public: 00013 InputSinkProgram( Connection *C, Object *O, Verb *V, const QString &pVerbName ); 00014 00015 virtual bool input( const QString &pData ); 00016 00017 private: 00018 Connection *mConnection; 00019 Object *mObject; 00020 Verb *mVerb; 00021 QString mVerbName; 00022 QStringList mProgram; 00023 }; 00024 00025 #endif // INPUTSINKPROGRAM_H