Skip to content
Snippets Groups Projects
Commit c6687c5c authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

virtual T* -> T virtual *

parent e1b8ba93
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ class TimeSteppingScheme { ...@@ -14,7 +14,7 @@ class TimeSteppingScheme {
void virtual extractDisplacement(VectorType &displacement) const = 0; void virtual extractDisplacement(VectorType &displacement) const = 0;
void virtual extractVelocity(VectorType &velocity) const = 0; void virtual extractVelocity(VectorType &velocity) const = 0;
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> * TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> virtual *
clone() = 0; clone() = 0;
}; };
...@@ -34,7 +34,7 @@ class ImplicitEuler ...@@ -34,7 +34,7 @@ class ImplicitEuler
void virtual extractDisplacement(VectorType &) const override; void virtual extractDisplacement(VectorType &) const override;
void virtual extractVelocity(VectorType &) const override; void virtual extractVelocity(VectorType &) const override;
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> *clone() TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> virtual *clone()
override; override;
private: private:
...@@ -69,7 +69,7 @@ class Newmark ...@@ -69,7 +69,7 @@ class Newmark
void virtual extractDisplacement(VectorType &) const override; void virtual extractDisplacement(VectorType &) const override;
void virtual extractVelocity(VectorType &) const override; void virtual extractVelocity(VectorType &) const override;
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> *clone() TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> virtual *clone()
override; override;
private: private:
...@@ -106,7 +106,7 @@ class EulerPair ...@@ -106,7 +106,7 @@ class EulerPair
void virtual extractDisplacement(VectorType &) const override; void virtual extractDisplacement(VectorType &) const override;
void virtual extractVelocity(VectorType &) const override; void virtual extractVelocity(VectorType &) const override;
virtual TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> *clone() TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> virtual *clone()
override; override;
private: private:
......
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