My declaration is as follows
#include <vector>
#include <iostream>
using namespace std;
typedef struct _ListofHops_T
{
int macAddrLtr;
int ttlValue;
}ListofHops;
struct ReadActivateLinkTrace
{
typedef std::vector < ListofHops *> ListofHopsList;
bool operationState;
};
int main()
{
ReadActivateLinkTrace readLinkTrace;
for (size_t listItr=0; listItr < readLinkTrace.ListofHopsList.size(); listItr++)
{
.....
}
}
I am trying to declare a vector of list of hops struct within a struct ReadActivateLinkTrace.
- Is the above declaration valid.
- I get the following error compiling
vector.cpp:23: error: invalid use of ReadActivateLinkTrace::ListofHopsList
I am new to vectors . how can i acess/iterate through vector of structures defined in a structure?
