Files
barrier/CUnixXScreen.h
crs 900b075e3a initial revision of synergy. currently semi-supports X windows
on unix, but client screens don't simulate events other than
mouse move.  also not supporting clipboard at all yet and the
main app is just a temporary framework to test with.  must
clean up protocol and communication.
2001-05-13 11:40:29 +00:00

17 lines
271 B
C++

#ifndef CUNIXXSCREEN_H
#define CUNIXXSCREEN_H
#include "CXScreen.h"
class CUnixXScreen : public CXScreen {
public:
CUnixXScreen(const CString& name);
virtual ~CUnixXScreen();
protected:
virtual void onOpen(bool isPrimary);
virtual void onClose();
};
#endif