objstream.h #1

  • //
  • guest/
  • perforce_software/
  • p4/
  • 2017-1/
  • sys/
  • objstream.h
  • View
  • Commits
  • Open Download .zip Download (345 B)
/*
 * Copyright 1995, 1996 Perforce Software.  All rights reserved.
 *
 * This file is part of Perforce - the FAST SCM System.
 */

class ObjStream
{
    public:

	                        ObjStream() { }

	virtual			~ObjStream() { }

	virtual unsigned char	Next( Error *e ) = 0;

	int			AtEof() { return eof; }

    protected:

	int			eof;
} ;

# Change User Description Committed
#1 22288 mark_mears import 2017.1 code drop