itpp_sci  1.0.0
it++ based simulation framework for scicoslab, scilab and scipy
sci_cofdm_demap.hpp
1 /*xxx
2 * \brief - SCI_COFDM_DEMAP API
3 * \author maki
4 */
5 
6 #ifndef SCI_COFDM_DEMAP_HPP
7 #define SCI_COFDM_DEMAP_HPP
8 
9 #include "sci\_sci_base.hpp"
10 #include "sim\sim_cofdm_demap.hpp"
11 
12 using namespace itpp;
13 using namespace std;
14 using namespace SIM;
15 
16 namespace SCI
17 {
25 {
26 public:
27 
29  ~sci_cofdm_demap();
30 
31  sci_cofdm_demap* create(int sci_type)
32  {
33  return (this);
34  };
35  void destroy()
36  {
37  return ;
38  };
39 
40  void set(int param, sci_var* p_v);
41  sci_var* get(int param);
42  void exec(int command);
43  sci_var* proc(sci_var* p_v_ce, sci_var* p_v_x);
44 
45 };
46 
47 }// SCI
48 #endif //SCI_COFDM_demap_HPP
void destroy()
destroy SCI object
Definition: sci_cofdm_demap.hpp:35
SIM layer implements low level simulation models with itpp base classes as operational types...
Definition: sim_amp.hpp:15
virtual base class SCI_API API functions
Definition: _sci_base.hpp:40
de-mapper of COFDM carriers into QAM and BPSK symbol codes Core immediate functions: SIM::cofdm_dema...
Definition: sim_cofdm_demap.hpp:27
Definition: _sci_assert.cpp:35
COFDM demapper - demaps QAM symbols into QAM codes, BPSK symbols into pilots - wrapper for a SIM::cof...
Definition: sci_cofdm_demap.hpp:24
sci_cofdm_demap * create(int sci_type)
Definition: sci_cofdm_demap.hpp:31
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