// This may look like C code, but it is really -*- C++ -*-
// 
// <copyright> 
//  
//  Copyright (c) 1996
//  Institute for Information Processing and Computer Supported New Media (IICM), 
//  Graz University of Technology, Austria. 
//  
// </copyright> 
// 
// 
// <file> 
// 
// Name:        tinetsockio.C
// 
// Purpose:     
// 
// Created:     11 Dec 1996   Joerg Faschingbauer
// 
// Modified:    
// 
// Description: 
// 
// $Id: tinetsockio.C,v 1.2 1996/12/23 09:34:06 jfasch Exp $
// 
// $Log: tinetsockio.C,v $
// Revision 1.2  1996/12/23 09:34:06  jfasch
// link time assertion
//
// Revision 1.1  1996/12/12 14:50:06  jfasch
// Initial revision
//
// 
// </file> 
#include "tinetsockio.h"

#include <hyperg/utils/assert.h>

// --------------------------------------------------------------------
const char* TransparentINETSocketIO :: version1 = "TransparentINETSocketIO: $Id: tinetsockio.C,v 1.2 1996/12/23 09:34:06 jfasch Exp $" ;

TransparentINETSocketIO :: TransparentINETSocketIO (const INETSocketPtr& s)
: TransparentSocketIO (SocketPtr (s.ptr())),
  sock_(s) {
   hgassert (s, "TransparentINETSocketIO::TransparentINETSocketIO(): nil socket") ;
}
