Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by td611

  1. td611

    C++ Vector Implementation

    Thank you Krusty the Senile, that was helpful
  2. td611

    C++ Vector Implementation

    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...
Back
Top Bottom