Debian 7.0.0でCodeBlocks 10.05を使用してC++アプリケーションを開発しています。
何らかの理由で、次のコード
#include <iostream>
std::vector< int > delaunayDiv(const std::vector< int <T> > & vP, cv::Rect boundRect,
std::vector<int>& triangles, int& numTriangles, bool lookRight);
次のエラーを返します
error: 'vector' in namespace 'std' does not name a type
vector
ヘッダーを含める必要があります。
#include <vector>