00001 /****************************************************************************** 00002 * \file 00003 * 00004 * $Id: init.cpp 825 2012-05-23 14:29:07Z spanel $ 00005 * 00006 * Copyright (C) Brno University of Technology 00007 * 00008 * This file is part of software developed by dcgm-robotics@FIT group. 00009 * 00010 * Author: Vit Stancl (stancl@fit.vutbr.cz) 00011 * Supervised by: Michal Spanel (spanel@fit.vutbr.cz) 00012 * Date: dd/mm/2011 00013 * 00014 * This file is free software: you can redistribute it and/or modify 00015 * it under the terms of the GNU Lesser General Public License as published by 00016 * the Free Software Foundation, either version 3 of the License, or 00017 * (at your option) any later version. 00018 * 00019 * This file is distributed in the hope that it will be useful, 00020 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00022 * GNU Lesser General Public License for more details. 00023 * 00024 * You should have received a copy of the GNU Lesser General Public License 00025 * along with this file. If not, see <http://www.gnu.org/licenses/>. 00026 */ 00027 00028 #include "rviz/plugin/type_registry.h" 00029 00030 #include "but_display.h" 00031 #include "but_distance_linear_visualizer.h" 00032 #include "but_distance_circular_indicator.h" 00033 #include "but_cob_stretch_indicator.h" 00034 #include "but_camcast.h" 00035 #include "but_projection.h" 00036 #include "but_context_manager.h" 00037 #include "but_object_manager.h" 00038 00039 #include "srs_ui_but/but_data_fusion/but_cam_display.h" 00040 00041 extern "C" void rvizPluginInit(rviz::TypeRegistry* reg) 00042 { 00043 reg->registerDisplay<srs_ui_but::CButDisplay>("CButDisplay"); 00044 reg->registerDisplay<srs_ui_but::CButDistanceLinearVisualizer>("CButDistanceLinearVisualizer"); 00045 reg->registerDisplay<srs_ui_but::CButDistanceCircularIndicator>("CButDistanceCircularIndicator"); 00046 reg->registerDisplay<srs_ui_but::CButCOBStretchIndicator>("CButCOBStretchIndicator"); 00047 reg->registerDisplay<rviz::CButCamDisplay>("CButCamDisplay"); 00048 reg->registerDisplay<srs_ui_but::CButCamCast>("CButCamCast"); 00049 reg->registerDisplay<srs_ui_but::CButProjection>("CButProjection"); 00050 reg->registerDisplay<srs_ui_but::CButContextManager>("CButContextManager"); 00051 reg->registerDisplay<srs_ui_but::CButObjectManager>("CButObjectManager"); 00052 } 00053