//-*-C++-*- /* inc/Integer.hpp */ /* * Author: Philogelos A. <Philogelos@yahoo.com> * Maintainer: Philogelos A. * Keywords: C++, library, containers * * Copyright (C) 1998 Philogelos A. * * This file is part of Quercus Robusta. * * Quercus Robusta is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this software; see the file COPYING.LIB. If not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * */ #ifndef __INTEGER_HPP__ #define __INTEGER_HPP__ /* $Id: Integer.hpp,v 1.2 1999/03/03 19:09:02 philogelos Exp $ */ #include "defines.h" #include "Object.hpp" class DivideByZero; /** Wrapper around native (long) integer type (for now). Plans are to make this interface with LISP-type integers behind. @author Philogelos @created */ class Integer : public Object { public: Integer( Index anInt ); public: Integer( const Integer &anInteger ); public: virtual Index getInt() const; public: virtual void setInt( Index anInt ); public: static const Integer *getZero(); public: virtual Integer *next() const; public: virtual void inc(); public: virtual boolean isZero() const; /* As a general side note: operators considered harmful. */ public: virtual Integer *add( const Integer *aTerm ) const; public: virtual Integer *sub( const Integer *aTerm ) const; public: virtual Integer *mul( const Integer *aTerm ) const; public: virtual Integer *div( const Integer *aTerm ) const THROWS( DivideByZero * ); public: virtual boolean equals( const Top *anOther ) const; public: virtual Top *clone() const; public: virtual String getString() const; public: virtual String getClassName() const; public: virtual boolean invariant() const; #if defined( TESTING ) public: virtual boolean tester( int aParam ) const; #endif protected: Index core; static const Integer *zero; }; /* $Log: Integer.hpp,v $ * Revision 1.2 1999/03/03 19:09:02 philogelos * Put sources under GNU Library License * * Revision 1.1 1999/02/28 12:47:07 philogelos * *** empty log message *** * */ /* __INTEGER_HPP__ */ #endif