18 |
#include "escript/Data/AbstractSystemMatrix.h" |
#include "escript/Data/AbstractSystemMatrix.h" |
19 |
#include "escript/Data/FunctionSpace.h" |
#include "escript/Data/FunctionSpace.h" |
20 |
|
|
21 |
|
using namespace std; |
22 |
|
|
23 |
namespace escript { |
namespace escript { |
24 |
|
|
25 |
AbstractDomain::AbstractDomain() { |
AbstractDomain::AbstractDomain() { |
184 |
|
|
185 |
bool AbstractDomain::operator==(const AbstractDomain& other) const |
bool AbstractDomain::operator==(const AbstractDomain& other) const |
186 |
{ |
{ |
187 |
return (this==&other); |
throwStandardException("AbstractDomain::operator=="); |
188 |
|
return false; |
189 |
} |
} |
|
|
|
190 |
bool AbstractDomain::operator!=(const AbstractDomain& other) const |
bool AbstractDomain::operator!=(const AbstractDomain& other) const |
191 |
{ |
{ |
192 |
return (!operator==(other)); |
throwStandardException("AbstractDomain::operator!="); |
193 |
|
return false; |
194 |
} |
} |
195 |
|
|
196 |
} // end of namespace |
} // end of namespace |