polserver/pol-core/bscript/str.h
turleypol cec379ae34
removed printOn method these debug strings where only used at a single (#899)
place
use formatter for Token instead of ostream
2026-07-21 08:50:32 +02:00

13 lines
295 B
C++

#pragma once
#include <sstream>
#include <string>
namespace Pol::Bscript
{
class BObjectImp;
class BObject;
bool try_to_format( std::stringstream& to_stream, BObjectImp* what, std::string& frmt );
std::string get_formatted( BObjectImp* what, std::string& frmt );
} // namespace Pol::Bscript