MUQ  0.4.3
Quadrature.cpp
Go to the documentation of this file.
2 
4 
5 using namespace muq::Approximation;
6 
7 unsigned int Quadrature::Exactness(unsigned int quadOrder) const
8 {
9  std::string className = typeid(*this).name();
10 
11  throw muq::NotImplementedError("The Exactness method has not been implmented for class \"" + className + "\".");
12  return 0;
13 }
virtual unsigned int Exactness(unsigned int quadOrder) const
Definition: Quadrature.cpp:7
Class for virtual base functions that are not implemented.
Definition: Exceptions.h:22