Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5141 in orxonox.OLD for trunk/src/lib/util/helper_functions.h


Ignore:
Timestamp:
Aug 26, 2005, 4:04:53 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: moved helper-functions to helper-functions.cc

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/util/helper_functions.h

    r5114 r5141  
    11/*!
    2  * @file proto_class.h
    3  * @brief Definition of ...
     2 * @file helper_functions.h
     3 * @brief Definition of some minor helper-functions
    44*/
    55
    6 #ifndef _PROTO_CLASS_H
    7 #define _PROTO_CLASS_H
    8 
    9 #include "base_object.h"
     6#ifndef _HELPER_FUNCTIONS_H
     7#define _HELPER_FUNCTIONS_H
    108
    119// FORWARD DECLARATION
    1210
     11/***********************
     12*** HELPER FUNCTIONS ***
     13***********************/
     14bool          isBool(const char* BOOL, bool defaultValue);
     15int           isInt(const char* INT, int defaultValue);
     16float         isFloat(const char* FLOAT, float defaultValue);
     17const char*   isString(const char* STRING, const char* defaultValue);
    1318
    14 
    15 //! A class for ...
    16 class ProtoClass : public BaseObject {
    17 
    18  public:
    19   ProtoClass();
    20   virtual ~ProtoClass();
    21 
    22 
    23  private:
    24 
    25 };
    26 
    27 #endif /* _PROTO_CLASS_H */
     19#endif /* _HELPER_FUNCTIONS_H */
Note: See TracChangeset for help on using the changeset viewer.