roviz  0.7
Code Documentation of roviz
trim_impl.h
1 #ifndef TRIM_IMPL_H
2 #define TRIM_IMPL_H
3 
7 class TrimImpl
8 {
9 public:
10  virtual ~TrimImpl() = default;
11 
16  virtual double value(void) = 0;
17 };
18 
19 #endif // TRIM_IMPL_H
The interface of a Trim implementation.
Definition: trim_impl.h:7
virtual double value(void)=0
Get the value of the Trim.