00001 /* 00002 * Copyright (c) 2014, Fetch Robotics Inc. 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are met: 00007 * 00008 * * Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * * Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * * Neither the name of the FFetch Robotics Inc. nor the names of its 00014 * contributors may be used to endorse or promote products derived from 00015 * this software without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL FETCH ROBOTICS INC. BE LIABLE FOR ANY 00021 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00022 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00023 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00024 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00025 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 00026 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00027 */ 00028 00029 // Author: Michael Ferguson 00030 00031 #ifndef ROBOT_CONTROLLERS_INTERFACE_HANDLE_H 00032 #define ROBOT_CONTROLLERS_INTERFACE_HANDLE_H 00033 00034 #include <string> 00035 #include <boost/shared_ptr.hpp> 00036 00037 namespace robot_controllers 00038 { 00039 00043 class Handle 00044 { 00045 public: 00046 Handle() 00047 { 00048 } 00049 00051 virtual ~Handle() 00052 { 00053 } 00054 00056 virtual std::string getName() = 0; 00057 00058 private: 00059 // No copy 00060 Handle(const Handle&); 00061 Handle& operator=(const Handle&); 00062 }; 00063 00064 typedef boost::shared_ptr<Handle> HandlePtr; 00065 00066 } // namespace robot_controllers 00067 00068 #endif // ROBOT_CONTROLLERS_INTERFACE_HANDLE_H