/
glscene
/
pasdoc
Обзор
Документация
Войти
/
glscene
/
pasdoc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
source/component/PasDoc_ObjectVector.pas
74 строки
2 KB
Michalis Kamburelis
Adjust copyrights to 2018
09 фев 2018, 00:50
09 фев 2018, 00:50
a65c4d9
Код
Авторство
О чём код?
{ Copyright 1998-2018 PasDoc developers. This file is part of "PasDoc". "PasDoc" is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. "PasDoc" 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 General Public License for more details. You should have received a copy of the GNU General Public License along with "PasDoc"; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA ---------------------------------------------------------------------------- } { @author(Johannes Berg <johannes@sipsolutions.de>) @author(Michalis Kamburelis) a simple object vector } unit PasDoc_ObjectVector; {$I pasdoc_defines.inc} interface uses Contnrs, Classes; type TObjectVector = class(TObjectList) public { This is only to make constructor virtual, while original TObjectList has a static constructor. } constructor Create(const AOwnsObject: boolean); virtual; {$IFNDEF FPC} // Fix bug in D7 TList.Sort. procedure Sort(Compare: TListSortCompare); reintroduce; {$ENDIF} end; function ObjectVectorIsNilOrEmpty(const AOV: TObjectVector): boolean; implementation function ObjectVectorIsNilOrEmpty(const AOV: TObjectVector): boolean; begin Result := (not Assigned(AOV)) or (AOV.Count = 0); end; { TObjectVector } constructor TObjectVector.Create(const AOwnsObject: boolean); begin inherited Create(AOwnsObject); end; {$IFNDEF FPC} procedure TObjectVector.Sort(Compare: TListSortCompare); begin if Count <= 1 then exit; inherited; end; {$ENDIF} end.