I have two classes in my project, both of which use the same header file which contains this struct definition:

struct vertex3D {
float X;
float Y;
float Z;
};

When I try to compile the project I get a 'struct' type redefinition error.
How can I include the above header in both classes without getting this error?