Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
17
generator/feature_emitter_iface.hpp
Normal file
17
generator/feature_emitter_iface.hpp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
namespace feature
|
||||
{
|
||||
class FeatureBuilder;
|
||||
} // namespace feature
|
||||
|
||||
class FeatureEmitterIFace
|
||||
{
|
||||
// Disable deletion via this interface, because some dtors in derived classes are noexcept(false).
|
||||
|
||||
protected:
|
||||
~FeatureEmitterIFace() = default;
|
||||
|
||||
public:
|
||||
virtual void operator()(feature::FeatureBuilder const &) = 0;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue