ArtMOO
|
00001 #ifndef INPUTSINKSET_H 00002 #define INPUTSINKSET_H 00003 00004 #include "inputsink.h" 00005 00006 class Connection; 00007 class Object; 00008 class Property; 00009 00010 class InputSinkSet : public InputSink 00011 { 00012 public: 00013 InputSinkSet( Connection *C, Object *O, Property *P, const QString &pPropName ); 00014 00015 virtual bool input( const QString &pData ); 00016 00017 private: 00018 Connection *mConnection; 00019 Object *mObject; 00020 Property *mProperty; 00021 QString mPropName; 00022 QStringList mData; 00023 }; 00024 00025 #endif // INPUTSINKSET_H