M
Matthias Pospiech
This class:
#pragma once
#include <vector>
#include "um.h"
#define MAXMROOT 9 /* 2^(MAXMROOT-1) = # of elements in BRcnt */
class FastFourierTrans
{
public:
FastFourierTrans(void);
~FastFourierTrans(void);
public:
void FFT2D(vector<vector<CComplex> > InputArray,
vector<vector<CComplex> > OutputArray, long N,long sd);
};
throws the following error i do not understand:
1>e:\daten\dev\cpp\lightmodulator2dmat\lightmodulator2d\FastFourierTrans.h(34)
: error C2061: Syntaxfehler: Bezeichner 'vector'
1>.\FastFourierTrans.cpp(17) : error C2065: 'vector': nichtdeklarierter
Bezeichner
1>.\FastFourierTrans.cpp(17) : error C2059: Syntaxfehler: '>'
1>.\FastFourierTrans.cpp(21) : error C2143: Syntaxfehler: Es fehlt ';'
vor '{'
1>.\FastFourierTrans.cpp(21) : error C2447: '{': Funktionskopf fehlt -
Parameterliste im alten Stil?
What is wrong ?
Matthias
#pragma once
#include <vector>
#include "um.h"
#define MAXMROOT 9 /* 2^(MAXMROOT-1) = # of elements in BRcnt */
class FastFourierTrans
{
public:
FastFourierTrans(void);
~FastFourierTrans(void);
public:
void FFT2D(vector<vector<CComplex> > InputArray,
vector<vector<CComplex> > OutputArray, long N,long sd);
};
throws the following error i do not understand:
1>e:\daten\dev\cpp\lightmodulator2dmat\lightmodulator2d\FastFourierTrans.h(34)
: error C2061: Syntaxfehler: Bezeichner 'vector'
1>.\FastFourierTrans.cpp(17) : error C2065: 'vector': nichtdeklarierter
Bezeichner
1>.\FastFourierTrans.cpp(17) : error C2059: Syntaxfehler: '>'
1>.\FastFourierTrans.cpp(21) : error C2143: Syntaxfehler: Es fehlt ';'
vor '{'
1>.\FastFourierTrans.cpp(21) : error C2447: '{': Funktionskopf fehlt -
Parameterliste im alten Stil?
What is wrong ?
Matthias