#include "stdafx.h"
#include <windows.h>
#include "stdio.h"
#include <vector>
using namespace std;
vector<POINT> ptPath;                      //这里不知道是什么意思
POINT ptWH[4] = 
{
{ 66, 94 },
{ 68, 82 },
{ 95, 99 },
{ 95, 99 },
};
vector<POINT> pts[2];ptPath.clear();请教:
#include <vector> 
vector<POINT> ptPath; 有这样的写法吗?#include <vector> 
表示的是什么意思?vector<POINT> ptPath; 
表示的是什么意思?谢谢!