summaryrefslogtreecommitdiff
path: root/src/Fl_System_Driver.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-04-19 22:45:22 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-04-19 22:45:22 +0000
commit769d151a121ac849a365a509d644c3328738970a (patch)
tree65aab2b83a8ca4b678088b06e8771053c10943d7 /src/Fl_System_Driver.cxx
parentcd4498021e9623da828b3fb8344bc4db35675efe (diff)
Virtualized add_fd and remove_fd into System Driver
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11668 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_System_Driver.cxx')
-rw-r--r--src/Fl_System_Driver.cxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Fl_System_Driver.cxx b/src/Fl_System_Driver.cxx
index 9c34194fe..ca94789f6 100644
--- a/src/Fl_System_Driver.cxx
+++ b/src/Fl_System_Driver.cxx
@@ -411,6 +411,27 @@ int Fl_System_Driver::file_type(const char *filename)
return Fl_File_Icon::ANY;
}
+void Fl_System_Driver::add_fd(int fd, int when, Fl_FD_Handler cb, void *d)
+{
+ // nothing to do, reimplement in driver if needed
+}
+
+void Fl_System_Driver::add_fd(int fd, Fl_FD_Handler cb, void *d)
+{
+ // nothing to do, reimplement in driver if needed
+}
+
+void Fl_System_Driver::remove_fd(int fd, int when)
+{
+ // nothing to do, reimplement in driver if needed
+}
+
+void Fl_System_Driver::remove_fd(int fd)
+{
+ // nothing to do, reimplement in driver if needed
+}
+
+
//
// End of "$Id$".
//