Используя Microsoft Visual C ++, я пытаюсь скомпилировать файл «test.cc», который является частью небольшого пакета, доступного для бесплатной загрузки на
http://sourceforge.net/projects/clippoly/files/
Файл test.cc выглядит следующим образом:
// nclip: a polygon clip library
// Copyright (C) 1993 University of Twente
// klamer@mi.el.utwente.nl
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free
// Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <cstring>
#include <iostream>
#include "poly.h"
#include "poly_io.h"
#include "nclip.h"
using namespace ::std;
void
clear(PolyPList &l)
{
PolyPListIter i(l);
while(i())
delete i.val();
}
int
main(int, char *[])
{
Poly *a = read_poly(cin), *b = read_poly(cin);
PolyPList a_min_b, b_min_a, a_and_b;
clip_poly( *a, *b, a_min_b, b_min_a, a_and_b );
cout << "a_min_b:\n" << a_min_b;
cout << "b_min_a:\n" << b_min_a;
cout << "a_and_b:\n" << a_and_b;
delete a;
delete b;
clear(a_min_b);
clear(b_min_a);
clear(a_and_b);
return 0;
}
Файл теста предназначен для демонстрации расчета пересечения двух входных многоугольников.
Я включил пути к необходимым заголовочным файлам в 'Project-> Properties-> VC ++ Directoryies-> Include Directories', и компилятор распознает существование "poly.h", "poly_io.h" и "nclip. ч».
однако, когда я пытаюсь скомпилировать, я получаю следующие ошибки компоновщика:
test.obj: ошибка LNK2019: неразрешенный внешний символ "private: __thiscall PolyNode::~PolyNode(void)"
(?? 1PolyNode @@ AAE @ XZ), на который имеется ссылка в функции "private: void * __thiscall PolyNode::
скалярный деструктор удаления '(unsigned int) "` (?? _ GPolyNode @@ AAEPAXI @ Z)
test.obj: ошибка LNK2019: неразрешенный внешний символ "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl operator<<(class std::basic_ostream<char,struct std::char_traits<char> > &,class Set<class Poly *> const &)"
(?? 6 @ YAAAV? $ Basic_ostream @ DU? $ Char_traits @ D @ std @@@ std @@ AAV01 @ ABV? $ Set @ PAVPoly @@ @@@ Z) ссылка на функцию _main
test.obj: ошибка LNK2019: неразрешенный внешний символ "void __cdecl clip_poly(class Poly const &,class Poly const &,class Set<class Poly *> &,class Set<class Poly *> &,class Set<class Poly *> &)"
(? Clip_poly @@ YAXABVPoly @@ 0AAV? $ Set @ PAVPoly @@@@ 11 @ Z), на который ссылается функция _main
test.obj: ошибка LNK2019: неразрешенный внешний символ "class Poly * __cdecl read_poly(class std::basic_istream<char,struct std::char_traits<char> > &)"
(? Read_poly @@ YAPAVPoly @@ AAV? $ Basic_istream @ DU? $ Char_traits @ D @ std @@@ std @@@ Z), на который есть ссылка в функции _main
Что я делаю не так? Я попытался добавить пути повсюду в разделе «Проект-> Свойства». Но сейчас я в растерянности.
Надеюсь, это довольно простой вопрос для кого-то:)