I declare a vector of object Persons
#ifndef PostO_H
#define PostO_H
#include "Person.h"
#include "Address.h"
#include <iostream>
#include <string>
using namespace std;
class PostO
{
private:
vector <Person> mList[];
When I do so, I get this error, underlining mList.
"incomplete type is not...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.