mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
29 lines
No EOL
360 B
C++
29 lines
No EOL
360 B
C++
/*
|
|
History
|
|
=======
|
|
|
|
Notes
|
|
=======
|
|
|
|
*/
|
|
|
|
|
|
#include "execmodl.h"
|
|
|
|
#include "../clib/clib.h"
|
|
#include "../clib/stlutil.h"
|
|
|
|
#include "eprog.h"
|
|
#include "executor.h"
|
|
#include "impstr.h"
|
|
|
|
#include <string>
|
|
|
|
namespace Pol {
|
|
namespace Bscript {
|
|
const std::string& ExecutorModule::scriptname() const
|
|
{
|
|
return exec.prog_->name;
|
|
}
|
|
}
|
|
} |