mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
13 lines
231 B
C++
13 lines
231 B
C++
#ifndef _UTILS_H_
|
|
#define _UTILS_H_
|
|
|
|
#include <string>
|
|
#include "Stream.h"
|
|
|
|
namespace Utils
|
|
{
|
|
void GetLine(Framework::CStream*, std::string*, bool = true);
|
|
const char* GetFilenameFromPath(const char*, char = '\\');
|
|
};
|
|
|
|
#endif
|