我有一个C类,用
gcc和可视化工作室中的寡妇在
linux上编译.
boid.h:
#ifndef BOID_CLASS_HEADER_DEFINES_H #define BOID_CLASS_HEADER_DEFINES_H #include "defines.h" class Boid { public: // Initialize the boid with random position,heading direction and color Boid(float SceneRadius,float NormalVel); ..... protected: ... }; #endif
并在boid.cpp中:
#include "Boid.h" // Initialize the boid with random position,heading direction and color Boid::Boid(float SceneRadius,float NormalVel) { .... }
Compiling Boid.h: "error: vector: No such file or directory"
有任何想法吗?我以为你可以使用C/C++代码并在Xcode中编译没有问题?
谢谢
编辑:添加了define.h(也添加了#endif样本,但是在原始代码中)
编辑2:我有一个不同的错误后,注释掉几个包括有空:上面的向量错误.
#ifndef BOID_NAV_DEFINES_H #define BOID_NAV_DEFINES_H #include <stdlib.h> #include <vector> #include "Vector3d.h" #include "Point3d.h" #include "win_layer.h" #endif