設定したばかりのクラスのベクトルを作成しようとしていますが、エラーが発生し続けます。誰かアドバイスをくれませんか?関連するコードは次のとおりです。
class process{
public:
enum state {New,Ready,Running,Waiting,IO,Terminated};
double CPUburst[MAXCPUBURSTS];
double IOburst[MAXCPUBURSTS-1];
int nCPUbursts; // The number of CPU bursts this process actually uses
int priority, type; // Not always used
int currentBurst; // Indicates which of the series of bursts is currently being handled
};
vector<process> processTable;
私が得ているエラーは次のとおりです。
"template argument for 'template<class _Alloc> class std::allocator' uses local type 'main(int,
char**)::process*'"