00001 /* 00002 * Copyright (C) 2013, Osnabrück University 00003 * Copyright (C) 2017, Ing.-Buero Dr. Michael Lehning, Hildesheim 00004 * Copyright (C) 2017, SICK AG, Waldkirch 00005 * All rights reserved. 00006 * 00007 * Redistribution and use in source and binary forms, with or without 00008 * modification, are permitted provided that the following conditions are met: 00009 * 00010 * * Redistributions of source code must retain the above copyright 00011 * notice, this list of conditions and the following disclaimer. 00012 * * Redistributions in binary form must reproduce the above copyright 00013 * notice, this list of conditions and the following disclaimer in the 00014 * documentation and/or other materials provided with the distribution. 00015 * * Neither the name of Osnabrück University nor the names of its 00016 * contributors may be used to endorse or promote products derived from 00017 * this software without specific prior written permission. 00018 * * Neither the name of SICK AG nor the names of its 00019 * contributors may be used to endorse or promote products derived from 00020 * this software without specific prior written permission 00021 * * Neither the name of Ing.-Buero Dr. Michael Lehning nor the names of its 00022 * contributors may be used to endorse or promote products derived from 00023 * this software without specific prior written permission 00024 * 00025 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00026 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00027 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00028 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00029 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00030 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00031 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00032 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00033 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00034 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00035 * POSSIBILITY OF SUCH DAMAGE. 00036 * 00037 * Last modified: 12th Dec 2017 00038 * 00039 * Authors: 00040 * Michael Lehning <michael.lehning@lehning.de> 00041 * Jochen Sprickerhof <jochen@sprickerhof.de> 00042 * Martin Günther <mguenthe@uos.de> 00043 * 00044 * Based on the TiM communication example by SICK AG. 00045 * 00046 */ 00047 00048 #include <sick_scan/abstract_parser.h> 00049 00050 namespace sick_scan 00051 { 00052 00053 AbstractParser::AbstractParser() 00054 { 00055 } 00056 00057 AbstractParser::~AbstractParser() 00058 { 00059 } 00060 00061 } /* namespace sick_scan */