mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
13 lines
295 B
C++
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
|