itpp_sci  1.0.0
it++ based simulation framework for scicoslab, scilab and scipy
sci_int2bin.hpp
1 /*xxx
2 * \brief - SCI_INT2BIN API
3 * \author maki
4 */
5 
6 #ifndef SCI_INT2BIN_HPP
7 #define SCI_INT2BIN_HPP
8 
9 #include "sci\_sci_base.hpp"
10 #include "sim\sim_int2bin.hpp"
11 
12 using namespace itpp;
13 using namespace std;
14 using namespace SIM;
15 
21 namespace SCI
22 {
28 class sci_int2bin: public sci_base, public SIM::int2bin
29 {
30 public:
31 
32  sci_int2bin();
33  ~sci_int2bin();
34 
35  sci_int2bin* create(int sci_type)
36  {
37  return (this);
38  };
39  void destroy()
40  {
41  return ;
42  };
43  void set(int param, sci_var* p_v);
44  sci_var* get(int param);
45  void exec(int command);
46  sci_var* proc(sci_var* p_v_ce, sci_var* p_v_x);
47 };
48 
49 }// SCI
50 #endif //SCI_BIN2INT_HPP
void destroy()
destroy SCI object
Definition: sci_int2bin.hpp:39
integer to binary converter - wrapper for a SIM::int2bin Core function: SCI::sci_int2bin.proc()
Definition: sci_int2bin.hpp:28
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
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
sci_int2bin * create(int sci_type)
Definition: sci_int2bin.hpp:35
binary to integer converter Core function SIM::int2bin.process()
Definition: sim_int2bin.hpp:21