1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/*!
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (c) 2009 Apogee Instruments, Inc.
* \namespace help
* \brief This is namespace contains a set of helper
* functions.
*/
#ifndef HELP_INCLUDE_H_
#define HELP_INCLUDE_H_
#include <string>
#include <vector>
#include <stdint.h>
namespace help
{
/*!
* Takes ushort as input and returns it as a std::string
* \param [in] val Value to convert
* \return std::string
*/
std::string uShort2Str(const uint16_t val, bool hexOut=false);
/*!
* Takes string as input and returns it as a ushort
* \param [in] str String to convert
* \return ushort
*/
uint16_t Str2uShort(const std::string & str, bool hexIn=false);
double Str2Double(const std::string & str);
/*!
* Breaks input string into a vector of strings based on th
* input separator
* \param [in] str String to tokenize
* \param [in] separator Characters to split string
* \return vector of strings
*/
std::vector<std::string> MakeTokens(const std::string &str,
const std::string &separator);
std::string FixPath(const std::string & inDir);
uint16_t GetHighWord( uint32_t value);
uint16_t GetLowWord( uint32_t value);
uint8_t GetLowByte( uint16_t value );
uint8_t GetHighByte( uint16_t value );
std::string GetItemFromFindStr( const std::string & msg,
const std::string & item );
uint32_t SizeT2Uint32( size_t value );
}
#endif
|