Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
ee49f6db
Commit
ee49f6db
authored
19 years ago
by
Robert Klöfkorn
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/dynamictype.hh
+0
-63
0 additions, 63 deletions
common/dynamictype.hh
common/test/parsetest.cc
+0
-6
0 additions, 6 deletions
common/test/parsetest.cc
with
0 additions
and
69 deletions
common/dynamictype.hh
deleted
100644 → 0
+
0
−
63
View file @
976066e9
// -*- 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
This diff is collapsed.
Click to expand it.
common/test/parsetest.cc
+
0
−
6
View file @
ee49f6db
...
...
@@ -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
()
{}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment