Example.h
1 //-*-C++-*-
2 /***************************************************************************
3  *
4  * Copyright (C) 2002 by Willem van Straten
5  * Licensed under the Academic Free License version 2.1
6  *
7  ***************************************************************************/
8 
9 // dspsr/Signal/General/dsp/Example.h
10 
11 #ifndef __Example_h
12 #define __Example_h
13 
14 #include "dsp/Transformation.h"
15 #include "dsp/TimeSeries.h"
16 
17 namespace dsp {
18 
20 
27  class Example : public Transformation <TimeSeries, TimeSeries> {
28 
29  public:
30 
32  Example () : Transformation ("Example", inplace) { }
33 
35  ~Example ();
36 
37  protected:
38 
40  virtual void transformation ();
41 
42  };
43 
44 }
45 
46 #endif // !defined(__Example_h)
Contains all Baseband Data Reduction Library classes.
Definition: ASCIIObservation.h:17
Defines the interface by which Transformations are performed on data.
Definition: Transformation.h:54
Example()
Constructor.
Definition: Example.h:42
virtual void transformation()
Define the Transformation template base class pure virtual method.
~Example()
Destructor.

Generated using doxygen 1.8.17