Bayes Filters Library
Skippable.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016-2019 Istituto Italiano di Tecnologia (IIT)
3  *
4  * This software may be modified and distributed under the terms of the
5  * BSD 3-Clause license. See the accompanying LICENSE file for details.
6  */
7 
8 #ifndef SKIPPABLE_H
9 #define SKIPPABLE_H
10 
11 #include <BayesFilters/Skipper.h>
12 
13 namespace bfl {
14  class Skippable;
15 }
16 
17 
18 class bfl::Skippable : public Skipper
19 {
20 public:
21  virtual bool is_skipping() = 0;
22 };
23 
24 #endif /* SKIPPABLE_H */
bfl
Port of boost::any for C++11 compilers.
Definition: AdditiveMeasurementModel.h:13
Skipper.h
bfl::Skippable::is_skipping
virtual bool is_skipping()=0
bfl::Skipper
Definition: Skipper.h:18
bfl::Skippable
Definition: Skippable.h:18