From 364a4dbd1203c346133d1f13ae70f1d2f343da94 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 15 Dec 2014 23:26:21 +0000 Subject: Remove unused files. --- lib/common/EventWatchFilesystemObject.h | 48 --------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 lib/common/EventWatchFilesystemObject.h (limited to 'lib/common/EventWatchFilesystemObject.h') diff --git a/lib/common/EventWatchFilesystemObject.h b/lib/common/EventWatchFilesystemObject.h deleted file mode 100644 index f9175a49..00000000 --- a/lib/common/EventWatchFilesystemObject.h +++ /dev/null @@ -1,48 +0,0 @@ -// -------------------------------------------------------------------------- -// -// File -// Name: EventWatchFilesystemObject.h -// Purpose: WaitForEvent compatible object for watching directories -// Created: 12/3/04 -// -// -------------------------------------------------------------------------- - -#ifndef EVENTWATCHFILESYSTEMOBJECT__H -#define EVENTWATCHFILESYSTEMOBJECT__H - -#ifdef HAVE_KQUEUE - #include -#endif - - -// -------------------------------------------------------------------------- -// -// Class -// Name: EventWatchFilesystemObject -// Purpose: WaitForEvent compatible object for watching files and directories -// Created: 12/3/04 -// -// -------------------------------------------------------------------------- -class EventWatchFilesystemObject -{ -public: - EventWatchFilesystemObject(const char *Filename); - ~EventWatchFilesystemObject(); - EventWatchFilesystemObject(const EventWatchFilesystemObject &rToCopy); -private: - // Assignment not allowed - EventWatchFilesystemObject &operator=(const EventWatchFilesystemObject &); -public: - -#ifdef HAVE_KQUEUE - void FillInKEvent(struct kevent &rEvent, int Flags = 0) const; -#else - void FillInPoll(int &fd, short &events, int Flags = 0) const; -#endif - -private: - int mDescriptor; -}; - -#endif // EventWatchFilesystemObject__H - -- cgit v1.2.3