Six crescent shaped legs

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Smoother.hpp Source File

Smoother.hpp

00001 #ifndef SMOOTHER_H
00002 #define SMOOTHER_H
00003 
00004 class Smoother
00005 {
00006 public:
00007     virtual float smooth(float value) = 0;
00008 };
00009 
00010 #endif // SMOOTHER_H