Sophie

Sophie

distrib > * > 2010.0 > * > by-pkgid > b90d0d295bc5deaa2f765776f8c386b5 > files > 54

ecawave-debug-0.6.1-10mdv2009.0.i586.rpm

#ifndef QEPASTEEVENT_H
#define QEPASTEEVENT_H

#include <string>

#include "qeblockingevent.h"

/**
 * Paste input contents into the output at specified position
 */
class QEPasteEvent : public QEBlockingEvent {

 public:

  QEPasteEvent(ECA_CONTROL* ctrl,
	       const string& input,
	       const string& output,
	       long int insert_pos); 

 private:

  ECA_CONTROL* ectrl;
};

#endif