Changeset 170 for trunk/src/SDMath.cc


Ignore:
Timestamp:
01/06/05 13:52:30 (19 years ago)
Author:
kil064
Message:

Modify SDMath to be a class rather than just a namespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDMath.cc

    r169 r170  
    6363using namespace asap;
    6464
     65
     66SDMath::SDMath()
     67{;}
     68
     69SDMath::SDMath (const SDMath& other)
     70{
     71
     72// No state
     73
     74}
     75
     76SDMath& SDMath::operator=(const SDMath& other)
     77{
     78  if (this != &other) {
     79// No state
     80  }
     81  return *this;
     82}
     83
     84
    6585CountedPtr<SDMemTable> SDMath::average (const Block<CountedPtr<SDMemTable> >& in,
    6686                                        const Vector<Bool>& mask, bool scanAv,
Note: See TracChangeset for help on using the changeset viewer.