bWidgets
Core widget toolkit designed for Blender
bwFunctorInterface.h
Go to the documentation of this file.
1#pragma once
2
3namespace bWidgets {
4
32 public:
33 virtual void operator()() = 0;
34 virtual ~bwFunctorInterface() = default;
35};
36
37} // namespace bWidgets
Abstract function object class.
Definition: bwFunctorInterface.h:31
virtual ~bwFunctorInterface()=default
virtual void operator()()=0
Definition: bwContext.h:3