/*
*Daniel Tabuenca
*###-##-3128
*Login: dtabuenc
*Lab section 23
*Assignment 1
*Due April 28, Friday, 11:59pm, 2000
*/
#ifndef POLYTERM_H
#define POLYTERM_H
#include <iostream.h>
struct PolyTerm
{
float base;
float exp;
};
bool operator<(PolyTerm &, PolyTerm &);
ostream &operator<<(ostream &, PolyTerm &);
PolyTerm &operator+=(PolyTerm &, PolyTerm &);
PolyTerm &operator*=(PolyTerm &,PolyTerm &);
#endif