Concept checking class to validate that a template parameter is a model of the Bindable Node concept.
More...
template<typename T>
struct openvrml::node_impl_util::BindableNodeConcept< T >
Concept checking class to validate that a template parameter is a model of the Bindable Node concept.
A Bindable Node is a node that has a member function bind that takes a boolean value (the bind state) and a floating point value (the current time).
- Notation
| t | An object whose type is a model of Bindable Node |
| bind_state | A boolean |
| bind_time | A floating-point value |
- Valid expressions
| Name | Expression | Type requirements | Return type |
| Bind | t.bind(bind_state, bind_time) | | void |