00001 //###################################################################### 00002 // 00003 // GraspIt! 00004 // Copyright (C) 2002-2009 Columbia University in the City of New York. 00005 // All rights reserved. 00006 // 00007 // GraspIt! is free software: you can redistribute it and/or modify 00008 // it under the terms of the GNU General Public License as published by 00009 // the Free Software Foundation, either version 3 of the License, or 00010 // (at your option) any later version. 00011 // 00012 // GraspIt! is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 // 00017 // You should have received a copy of the GNU General Public License 00018 // along with GraspIt!. If not, see <http://www.gnu.org/licenses/>. 00019 // 00020 // Author(s): Matei T. Ciocarlie 00021 // 00022 // $Id: graspTransferCheckTask.h,v 1.1 2010/04/12 20:16:11 cmatei Exp $ 00023 // 00024 //###################################################################### 00025 00026 #ifndef _GRASPTRANSFERCHECKTASK_H_ 00027 #define _GRASPTRANSFERCHECKTASK_H_ 00028 00029 #include "taskDispatcher.h" 00030 00031 class Hand; 00032 class GraspableBody; 00033 namespace db_planner { 00034 class Grasp; 00035 } 00036 00038 class GraspTransferCheckTask : public Task { 00039 private: 00041 Hand *mHand1, *mHand2; 00043 GraspableBody *mObject; 00045 db_planner::PlanningTaskRecord mPlanningTask; 00046 00048 bool checkGraspCombo(db_planner::Grasp* grasp1, db_planner::Grasp* grasp2); 00049 00050 public: 00052 GraspTransferCheckTask(TaskDispatcher *disp, db_planner::DatabaseManager *mgr, 00053 db_planner::TaskRecord rec); 00055 ~GraspTransferCheckTask(); 00056 00058 virtual void start(); 00059 }; 00060 00061 #endif