Skip to content
Snippets Groups Projects
Commit ee49f6db authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

removed last file, and adapted parsetest.cc

[[Imported from SVN: r4447]]
parent 976066e9
No related branches found
No related tags found
No related merge requests found
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_DYNAMICTYPE_HH
#define DUNE_DYNAMICTYPE_HH
#include <cassert>
//#include <iostream>
namespace Dune {
typedef int IdentifierType;
//! Base class used for tagging derived classes with an identifier
class DynamicType {
public:
//! Definition for undefined value
static const IdentifierType undefined = -1;
//! set identifier of this class
DynamicType (int ident) : identifier_ (ident) {};
//! Make undefined identifier
DynamicType () : identifier_ (undefined) {};
/** \brief Virtual destructor*/
virtual ~DynamicType() {};
//! ???
virtual bool operator == ( const DynamicType &) {return true;};
//! ???
virtual bool operator != ( const DynamicType &) {return true;};
//! ???
virtual bool operator <= ( const DynamicType &) {return true;};
//! ???
virtual bool operator >= ( const DynamicType &) { return true; };
//! return identifier
IdentifierType getIdentifier() const
{
//std::cout << "Id: " << identifier_ << "(" << undefined << ")" << std::endl;
assert(identifier_ != undefined);
return identifier_;
}
protected:
//! Method to set identifier later, which we need for quadratures
void setIdentifier (IdentifierType ident)
{
identifier_ = ident;
}
//! The identifier, up to now an unique int
IdentifierType identifier_;
};
}
#endif
......@@ -22,13 +22,10 @@
#include <dune/common/configparser.hh>
#include <dune/common/debugstream.hh>
#include <dune/common/dlist.hh>
#include <dune/common/dynamictype.hh>
#include <dune/common/enumset.hh>
#include <dune/common/exceptions.hh>
#include <dune/common/fixedarray.hh>
#include <dune/common/fmatrix.hh>
#include <dune/common/function.hh>
#include <dune/common/functionspace.hh>
#include <dune/common/fvector.hh>
#include <dune/common/gcd.hh>
#include <dune/common/genericiterator.hh>
......@@ -37,10 +34,8 @@
#include <dune/common/iteratorfacades.hh>
#include <dune/common/lcm.hh>
#include <dune/common/logictraits.hh>
#include <dune/common/mapping.hh>
#include <dune/common/matrix.hh>
#include <dune/common/misc.hh>
#include <dune/common/operator.hh>
#include <dune/common/poolallocator.hh>
#include <dune/common/precision.hh>
#include <dune/common/propertymap.hh>
......@@ -53,6 +48,5 @@
#include <dune/common/tuples.hh>
#include <dune/common/typeinfo.hh>
#include <dune/common/typetraits.hh>
#include <dune/common/vectorspace.hh>
int main () {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment