itpp_sci  1.0.0
it++ based simulation framework for scicoslab, scilab and scipy
sci_cofdm_dem.hpp
1 /*xxx
2 * \brief - SCI_COFDM_DEM API
3 * \author maki
4 */
5 
6 #ifndef SCI_COFDM_DEM_HPP
7 #define SCI_COFDM_DEM_HPP
8 
9 #include "sci\_sci_base.hpp"
10 #include "sim\sim_cofdm_dem.hpp"
11 
12 using namespace itpp;
13 using namespace std;
14 using namespace SIM;
15 
16 namespace SCI
17 {
24 class sci_cofdm_dem : public sci_base, public SIM::cofdm_dem
25 {
26 public:
27 
28  sci_cofdm_dem();
29  ~sci_cofdm_dem();
30 
31  sci_cofdm_dem* create(int sci_type)
32  {
33  return (this);
34  };
35  void destroy()
36  {
37  return ;
38  };
39  void set(int param, sci_var* p_v);
40  sci_var* get(int param);
41  void exec(int command);
42  sci_var* proc(sci_var* p_v_ce, sci_var* p_v_x);
43 
44 };
45 
46 }// SCI
47 #endif //SCI_COFDM_DEM_HPP
void destroy()
destroy SCI object
Definition: sci_cofdm_dem.hpp:35
SIM layer implements low level simulation models with itpp base classes as operational types...
Definition: sim_amp.hpp:15
COFDM demodulator Core immediate functions SIM::cofdm_dem.set_symbol(), SIM::cofdm_mod.get_carriers() Core clocked functions SIM::cofdm_dem.process() .
Definition: sim_cofdm_dem.hpp:29
virtual base class SCI_API API functions
Definition: _sci_base.hpp:40
sci_cofdm_dem * create(int sci_type)
Definition: sci_cofdm_dem.hpp:31
Definition: _sci_assert.cpp:35
SCI layer implements SCI_API interface as wrappers for SIM layer models.
Definition: _sci_create_sci_var.cpp:8
Abstract base for encapsulation of sci_variables.
Definition: _sci_var.hpp:23
COFDM demodulator - wrapper for a SIM::cofdm_dem Core immediate functions: SCI::sci_cofdm_dem.set(), SCI::sci_cofdm_dem.get() Core clocked function: SCI::sci_cofdm_dem.proc()
Definition: sci_cofdm_dem.hpp:24