INTRODUCTION Overview Download and Install Documentation Publications REPOSITORY Libraries DEVELOPER Dev Guide Dashboard PEOPLE Contributors Users Project Download Mailing lists
|
basicexample/util.h00001 /* 00002 * GearBox Project: Peer-Reviewed Open-Source Libraries for Robotics 00003 * http://gearbox.sf.net/ 00004 * Copyright (c) 2008-2010 Gearbox Team 00005 * 00006 * This copy of Gearbox is licensed to you under the terms described in 00007 * the LICENSE file included in this distribution. 00008 * 00009 */ 00010 00011 #ifndef BASICEXAMPLE_UTILITY_H 00012 #define BASICEXAMPLE_UTILITY_H 00013 00014 #include <basicexample/defs.h> 00015 00016 namespace basicexample 00017 { 00018 00020 bool someBasicFunction( int ); 00021 00022 } 00023 00024 #endif |