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