1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
// Copyright (C) 1995 The New York Group Theory Cooperative
// See magnus/doc/COPYRIGHT for the full notice.
// Contents: Declaration of interface class ARC
//
// Principal Author: Roger Needham
//
// Status: complete
//
// Revision History:
//
#ifndef _ARC_H_
#define _ARC_H_
#include <iostream.h>
//---------------------------------------------------------------------------//
//------------------------------- ARC ---------------------------------------//
//---------------------------------------------------------------------------//
class ARC
{
public:
ARC( ) : theARC( 0 ) { }
operator int ( ) const { return theARC; }
ARC operator + ( const ARC& arc ) const {
return ARC( theARC + arc.theARC );
}
ARC operator - ( const ARC& arc ) const {
return ARC( theARC - arc.theARC );
}
ARC operator += ( const ARC& arc ) {
theARC += arc.theARC;
return *this;
}
ARC operator -= ( const ARC& arc ) {
theARC -= arc.theARC;
return *this;
}
inline friend ostream& operator << ( ostream& ostr, const ARC& arc ) {
return ostr << arc.theARC;
}
protected:
friend class ComputationManager;
friend class Supervisor;
ARC( int i ) : theARC( i ) { }
// Used by classes ComputationManager, Supervisor.
private:
int theARC;
};
struct ZeroARC : public ARC { ZeroARC( ) : ARC( 0 ) { } };
struct OneARC : public ARC { OneARC( ) : ARC( 1 ) { } };
#endif
|