view netinstall/nio-file.h @ 4100:d1cf2b9c4dfd

[xemacs-hg @ 2007-08-06 14:50:39 by michaels] 2007-07-31 Mike Sperber <mike@xemacs.org> * file-coding.c (undecided_convert): Kludge to prevent infinite recursion. * file-coding.c (detected_coding_system): Change default from raw-text to binary.
author michaels
date Mon, 06 Aug 2007 14:50:48 +0000
parents 3078fd1074e8
children
line wrap: on
line source

/*
 * Copyright (c) 2000, Red Hat, Inc.
 *
 *     This program is free software; you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation; either version 2 of the License, or
 *     (at your option) any later version.
 *
 *     A copy of the GNU General Public License can be found at
 *     http://www.gnu.org/
 *
 * Written by DJ Delorie <dj@cygnus.com>
 *
 */

/* see nio-file.cc */

class NetIO_File : public NetIO {
public:
  NetIO_File (char *url);
  void *fd;
  ~NetIO_File ();
  virtual int ok ();
  virtual int read (char *buf, int nbytes);
};