Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ApplicationCore
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
ChimeraTK Mirror
ApplicationCore
Commits
c1611380
Commit
c1611380
authored
8 years ago
by
Martin Christoph Hierholzer
Browse files
Options
Downloads
Patches
Plain Diff
removed a redundant and unused function
parent
310073df
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/Accessor.h
+0
-14
0 additions, 14 deletions
include/Accessor.h
with
0 additions
and
14 deletions
include/Accessor.h
+
0
−
14
View file @
c1611380
...
...
@@ -30,11 +30,6 @@ namespace ChimeraTK {
public:
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
* to an implementation (a NDRegisterAccessor), it is not initialised if it was constructed only using the
* placeholder constructor without arguments. */
...
...
@@ -91,8 +86,6 @@ namespace ChimeraTK {
owner
->
registerAccessor
(
this
);
}
virtual
bool
isFeeding
();
VariableDirection
getDirection
()
const
{
return
_direction
;}
UpdateMode
getUpdateMode
()
const
{
return
_mode
;}
...
...
@@ -132,13 +125,6 @@ namespace ChimeraTK {
};
/*********************************************************************************************************************/
template
<
typename
UserType
>
bool
Accessor
<
UserType
>::
isFeeding
()
{
return
_direction
==
VariableDirection
::
feeding
;
};
}
/* namespace ChimeraTK */
#endif
/* CHIMERATK_ACCESSOR_H */
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