I need to write a class using a vector and this is my first time using vectors. But I have looked through several books/web pages and can't see why this thing won't compile.
#include <vector>
template <class el>
class pQ
{
public:
private:
vector<el> a(1);
};
Any ideas. There must be some small syntax issue here I cant see. The error is something along the lines of using a struct that is not defined.