Ubuntu11.04でNetbeans7.1を使用しています。
次の呼び出し
set< Triangle > V;
エラーメッセージを表示します
error: ‘set’ was not declared in this scope
そして次の呼び出し
vector< Triangle > ans;
エラーメッセージを表示します
error: ‘vector’ was not declared in this scope
これは私の持っているにもかかわらず
#include <vector>
#include <set>
#include <map>
C++ファイルの先頭。
これを解決するのを手伝っていただければ幸いです。
ピーター。