vector_pf.h

来自「终于找到了bpsk信号的调制」· C头文件 代码 · 共 39 行

H
39
字号
//
//  File = vector_pf.h
//

#ifndef _VECTOR_PF_H_
#define _VECTOR_PF_H_

#include "pfelem.h"
class matrix_pf;

class vector_pf
{
protected:
  struct vrep
    {
    PrimeFieldElem *f;
    int refcnt;
    int orig_indx;
    int length;
    int max_indx;
    } *pV;
  int Is_Temp;

  vector_pf(void);
public:
   vector_pf( int size);
   vector_pf( int origin, int size);
   void common_ctor_proc(int origin, int size);
   vector_pf(vector_pf &x);
   ~vector_pf(void);
   //PrimeFieldElem& operator[](int);
   friend class matrix_pf;
   friend class rowvec_pf;
   friend class colvec_pf;

};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?