#include <string> in the header defines some structures. ERROR: string does not determine type
#ifndef STRCUTS_H #define STRCUTS_H #include <string> struct menuEntry { string itemID; //'string' does not name a type string itemName; //'string' does not name a type }; #endif I get the same error when I put #include <string> over the header protection. Think about it, I had strange problems placing structure definitions in headers. I must not get it.
+4