Open Inventor Release 2023.2.3
 
Loading...
Searching...
No Matches
SbDelegateImpl.h
Go to the documentation of this file.
1#ifndef _SB_DELEGATE_IMPL_H_
2#define _SB_DELEGATE_IMPL_H_
3
5
7namespace inventor
8{
9
10namespace impl
11{
12
17template<typename ReturnType, typename ArgType>
18
19{
20public:
22 virtual ReturnType call(ArgType arg) const = 0;
23
25 virtual SbDelegateImpl<ReturnType, ArgType>* clone() const = 0;
26};
27
28} // impl
29} // inventor
31#endif // _SB_DELEGATE_IMPL_H_
32