mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* all except pol * pol and includes under defines * something weird has happened * remove own folder from include searchpath * fixed remaining, adapted include style for external headers * missing include
11 lines
214 B
C++
11 lines
214 B
C++
#include "bscript/bapplicobj.h"
|
|
|
|
#include <fmt/format.h>
|
|
|
|
namespace Pol::Bscript
|
|
{
|
|
std::string BApplicObjBase::getStringRep() const
|
|
{
|
|
return fmt::format( "<appobj:{}>", typeOf() );
|
|
}
|
|
} // namespace Pol::Bscript
|