RTCHokuyoAist 3.0.0
|
00001 /* RTC:HokuyoAIST 00002 * 00003 * Header file for the HokuyoAIST interface implementation. 00004 * 00005 * Copyright 2010-2011 Geoffrey Biggs geoffrey.biggs@aist.go.jp 00006 * RT-Synthesis Research Group 00007 * Intelligent Systems Research Institute, 00008 * National Institute of Advanced Industrial Science and Technology (AIST), 00009 * Japan 00010 * All rights reserved. 00011 * 00012 * This file is part of HokuyoAIST. 00013 * 00014 * HokuyoAIST is free software; you can redistribute it and/or modify it 00015 * under the terms of the GNU Lesser General Public License as published 00016 * by the Free Software Foundation; either version 2.1 of the License, 00017 * or (at your option) any later version. 00018 * 00019 * HokuyoAIST is distributed in the hope that it will be useful, but 00020 * WITHOUT ANY WARRANTY; without even the implied warranty of 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00022 * Lesser General Public License for more details. 00023 * 00024 * You should have received a copy of the GNU Lesser General Public 00025 * License along with HokuyoAIST. If not, see 00026 * <http://www.gnu.org/licenses/>. 00027 */ 00028 00029 #if !defined(HOKUYOAIST_IMPL__) 00030 #define HOKUYOAIST_IMPL__ 00031 00032 #include "idl/hokuyoaist.hh" 00033 00034 class RTCHokuyoAIST; 00035 00036 namespace RTCHokuyoAist 00037 { 00038 00039 class HokuyoAistProvider 00040 : public virtual POA_Hokuyo_Aist::HokuyoAist, 00041 public virtual PortableServer::RefCountServantBase 00042 { 00043 public: 00044 HokuyoAistProvider(); 00045 virtual ~HokuyoAistProvider(); 00046 00047 void setup(RTCHokuyoAIST* owner) { owner_ = owner; } 00048 00049 void request_scan() throw (CORBA::SystemException); 00050 00051 private: 00052 RTCHokuyoAIST* owner_; 00053 }; // class HokuyoAistProvider 00054 00055 }; // namespace RTCHokuyoAist 00056 00057 #endif // HOKUYOAIST_IMPL__ 00058