home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / knetworkinterface.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-09-10  |  1.6 KB  |  47 lines

  1. /*  -*- C++ -*-
  2.  *  Copyright (C) 2003 Thiago Macieira <thiago.macieira@kdemail.net>
  3.  *
  4.  *
  5.  *  Permission is hereby granted, free of charge, to any person obtaining
  6.  *  a copy of this software and associated documentation files (the
  7.  *  "Software"), to deal in the Software without restriction, including
  8.  *  without limitation the rights to use, copy, modify, merge, publish,
  9.  *  distribute, sublicense, and/or sell copies of the Software, and to
  10.  *  permit persons to whom the Software is furnished to do so, subject to
  11.  *  the following conditions:
  12.  *
  13.  *  The above copyright notice and this permission notice shall be included 
  14.  *  in all copies or substantial portions of the Software.
  15.  *
  16.  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  17.  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  18.  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19.  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  20.  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  21.  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  22.  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23.  */
  24. #ifndef KNETWORKINTERFACE_H
  25. #define KNETWORKINTERFACE_H
  26.  
  27. #include <kdelibs_export.h>
  28.  
  29. namespace KNetwork {
  30.  
  31. /**
  32.  * A place-holder class for a future network interface class.
  33.  * This class is to be replaced with a more powerful version, inspired
  34.  * by:
  35.  *  - KInetInterface (kdenetwork/krfb/srvloc)
  36.  *  - NWInterface (kdenonbeta/knot/lib)
  37.  *  - java.net.NetworkInterface
  38.  */
  39. class KNetworkInterface
  40. {
  41. };
  42.  
  43. }                // namespace KNetwork
  44.  
  45. #endif
  46.  
  47.