UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
abstractVertTransform_old.hpp
1 /* abstractVertTransform.hpp */
2 /* $Id: abstractVertTransform.hpp 21282 2011-11-29 07:48:35Z guser1 $ */
3 #ifndef __abstractVertTransform_old_hpp
4 #define __abstractVertTransform_old_hpp
5 
6 #ifdef GE_BUILD
7 #include <wave_field.hpp>
8 #else
9 #include <s2proc/wave_field.hpp>
10 #endif
11 
12 namespace polycor_old
13 {
14 
15 
17 {
18 public:
19 
22 
24  virtual ~AbstractVertTransform();
25 
26  virtual bool operator()(WaveField &wf) = 0;
27 
28 protected:
29  virtual bool getT(float L, float &t);
30 
31 };
32 
33 };
34 
35 #endif /* abstractVertTransform_old.hpp */
Definition: wave_field.hpp:13
Definition: abstractVertTransform_old.hpp:16