Skip to content
Snippets Groups Projects
Commit f5c2c707 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

remove not needed virtual method declaration

parent 383a36a8
No related branches found
No related tags found
No related merge requests found
...@@ -46,8 +46,6 @@ public: ...@@ -46,8 +46,6 @@ public:
throw std::domain_error ( "Value not copy constructible" ); throw std::domain_error ( "Value not copy constructible" );
} }
} }
virtual bool eval ( ) = 0;
}; };
   
template < class Type > template < class Type >
...@@ -66,8 +64,6 @@ public: ...@@ -66,8 +64,6 @@ public:
Type & getValue ( bool ) const { Type & getValue ( bool ) const {
return getData ( ); return getData ( );
} }
virtual bool eval ( ) = 0;
}; };
   
template < class Type > template < class Type >
...@@ -86,8 +82,6 @@ public: ...@@ -86,8 +82,6 @@ public:
const Type & getValue ( bool ) const { const Type & getValue ( bool ) const {
return getConstData ( ); return getConstData ( );
} }
virtual bool eval ( ) = 0;
}; };
   
template < class Type > template < class Type >
...@@ -109,8 +103,6 @@ public: ...@@ -109,8 +103,6 @@ public:
else else
throw std::domain_error ( "Value not copy constructible" ); throw std::domain_error ( "Value not copy constructible" );
} }
virtual bool eval ( ) = 0;
}; };
   
template < class Type > template < class Type >
...@@ -132,8 +124,6 @@ public: ...@@ -132,8 +124,6 @@ public:
else else
throw std::domain_error ( "Value not copy constructible" ); throw std::domain_error ( "Value not copy constructible" );
} }
virtual bool eval ( ) = 0;
}; };
   
} /* namespace abstraction */ } /* namespace abstraction */
......
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