Files
simgear/simgear/structure/intern.hxx
2009-07-16 12:09:44 +02:00

15 lines
231 B
C++

#ifndef SIMGEAR_INTERN_HXX
#define SIMGEAR_INTERN_HXX 1
#include <string>
namespace simgear
{
/**
* Return a pointer to a single string object for a given string.
*/
const std::string* intern(const std::string& str);
}
#endif