You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
418 B

10 months ago
#include "stdafx.h"
#include "Const.h"
#include <cmath>
#include <vector>
#include <queue>
#include <map>
#include <iostream>
#include <fstream>
#include <sstream>
10 months ago
using namespace std;
// ��������������
struct Connector
{
string id, name, partnumber;
P coord, dir;
int ID; // �����ڲ�ID
int bundleNodeID; // ���ڵ�bundleNode
Connector()
{
bundleNodeID = 0;
ID = 0;
10 months ago
}
} connectors[M];
10 months ago
int connectorNum;