state_machine_cpp
abstract_layer.h
Go to the documentation of this file.
1 //
2 // Created by henri on 10/11/21.
3 //
4 
5 #ifndef STATE_MACHINE_CPP_ABSTRACT_LAYER_H
6 #define STATE_MACHINE_CPP_ABSTRACT_LAYER_H
7 
8 namespace state_machine_cpp {
9  class AbstractLayer;
10 }
11 
13 public:
14  virtual ~AbstractLayer() = default;
15 };
16 
17 #endif //STATE_MACHINE_CPP_ABSTRACT_LAYER_H
state_machine_cpp::AbstractLayer::~AbstractLayer
virtual ~AbstractLayer()=default
state_machine_cpp
Definition: algorithm.h:14
state_machine_cpp::AbstractLayer
Definition: abstract_layer.h:12