00001 /* 00002 DASI Library Copyright (C) 2004-2006 Derek Jones 00003 This software is free for educational use only--no commercial use allowed. 00004 00005 This library is distributed in the hope that it will be useful, 00006 but WITHOUT ANY WARRANTY; without even the implied warranty of 00007 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00008 */ 00009 00010 #ifndef JLOCAL_MAP_SPEC_H 00011 #define JLOCAL_MAP_SPEC_H 00012 #include <jaus/jaus_message.h> 00013 #include <world_model_store.h> 00014 00015 // Utility function to tranfer the occupancy grid 00016 bool map_send(jaus_message* pmsg,bool); 00017 // Utility function to receive occpancy grid. 00018 void map_receive(jaus_message* pmsg); 00020 class jWorld_Model_Store : public World_Model_Store 00021 { 00022 public: 00023 jWorld_Model_Store(uint8 subclass); 00024 void JAUS_Message(void* pmsg); 00025 }; 00026 00027 #endif
1.3