Skip to content
Snippets Groups Projects
Commit c1611380 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

removed a redundant and unused function

parent 310073df
No related branches found
No related tags found
No related merge requests found
...@@ -30,11 +30,6 @@ namespace ChimeraTK { ...@@ -30,11 +30,6 @@ namespace ChimeraTK {
public: public:
virtual ~AccessorBase() {} virtual ~AccessorBase() {}
/** Check if this accessor is a output or input variable, from the point-of-view of the ApplicationModule
* owning the instance of the Accessor. A feeding accessor feeds values to its peers and thus is an output
* accessor. */
virtual bool isFeeding() = 0;
/** Return if the accessor is properly initialised. It is initialised if it was constructed passing the pointer /** Return if the accessor is properly initialised. It is initialised if it was constructed passing the pointer
* to an implementation (a NDRegisterAccessor), it is not initialised if it was constructed only using the * to an implementation (a NDRegisterAccessor), it is not initialised if it was constructed only using the
* placeholder constructor without arguments. */ * placeholder constructor without arguments. */
...@@ -91,8 +86,6 @@ namespace ChimeraTK { ...@@ -91,8 +86,6 @@ namespace ChimeraTK {
owner->registerAccessor(this); owner->registerAccessor(this);
} }
virtual bool isFeeding();
VariableDirection getDirection() const {return _direction;} VariableDirection getDirection() const {return _direction;}
UpdateMode getUpdateMode() const {return _mode;} UpdateMode getUpdateMode() const {return _mode;}
...@@ -132,13 +125,6 @@ namespace ChimeraTK { ...@@ -132,13 +125,6 @@ namespace ChimeraTK {
}; };
/*********************************************************************************************************************/
template< typename UserType >
bool Accessor<UserType>::isFeeding() {
return _direction == VariableDirection::feeding;
};
} /* namespace ChimeraTK */ } /* namespace ChimeraTK */
#endif /* CHIMERATK_ACCESSOR_H */ #endif /* CHIMERATK_ACCESSOR_H */
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