polserver/pol-core/bscript/escrutil.h
turley 189cad3479 Formating everything
Authors are not forced to use the clang-format setting, but should
atleast be inspired by the style.
The only thing which is now not allowed are tabs for ident/alignment!
2016-02-19 19:26:35 +01:00

21 lines
315 B
C++

/** @file
*
* @par History
*/
#ifndef BSCRIPT_ESCRUTIL_H
#define BSCRIPT_ESCRUTIL_H
#include <string>
namespace Pol
{
namespace Bscript
{
class BObjectImp;
BObjectImp* bobject_from_string( const std::string& str, int radix = 0 );
std::string normalize_ecl_filename( const std::string& filename );
}
}
#endif