Files
GDevelop/Extensions/Function/FunctionTools.h
T
Florian Rival 64e6860718 Version bump.
Updated copyrights.
2015-01-22 21:22:01 +01:00

30 lines
533 B
C++

/**
GDevelop - Function Extension
Copyright (c) 2008-2015 Florian Rival (Florian.Rival@gmail.com)
This project is released under the MIT License.
*/
#ifndef FUNCTIONTOOLS_H
#define FUNCTIONTOOLS_H
#include <string>
#include <vector>
namespace GDpriv
{
namespace FunctionTools
{
/**
* \brief Return list[index] unless index is out of range.
* \return list[index] or empty string.
*/
std::string GD_EXTENSION_API GetSafelyStringFromVector(std::vector<std::string> & list, unsigned int index );
}
}
#endif // FUNCTIONTOOLS_H