/
glscene
/
pasdoc
Обзор
Документация
Войти
/
glscene
/
pasdoc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
source/component/PasDoc_Reg.pas
56 строк
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 ---------------------------------------------------------------------------- } { @abstract(Registers the PasDoc components into the IDE. ) @author(Ralf Junker (delphi@zeitungsjunge.de)) @author(Johannes Berg <johannes@sipsolutions.de>) @author(Michalis Kamburelis) TODO: We have some properties in TPasDoc and generators components that should be registered with filename editors. } unit PasDoc_Reg; {$I pasdoc_defines.inc} interface { Registers the PasDoc components into the IDE. } procedure Register; implementation uses Classes, PasDoc_Base, PasDoc_GenHtml, PasDoc_GenLatex, PasDoc_GenHtmlHelp; procedure Register; begin RegisterComponents('PasDoc', [TPasDoc, THTMLDocGenerator, TTexDocGenerator, THTMLHelpDocGenerator]); end; end.