mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Hard part is finished every file is touched. Namespaces are currently rough named by directory name. Maybe we could split it more
30 lines
No EOL
413 B
C++
30 lines
No EOL
413 B
C++
/*
|
|
History
|
|
=======
|
|
|
|
Notes
|
|
=======
|
|
|
|
*/
|
|
|
|
#include "../clib/stl_inc.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "../clib/clib.h"
|
|
#include "../clib/mlog.h"
|
|
#include "../clib/stlutil.h"
|
|
|
|
#include "eprog.h"
|
|
#include "executor.h"
|
|
#include "execmodl.h"
|
|
#include "impstr.h"
|
|
|
|
namespace Pol {
|
|
namespace Bscript {
|
|
const string& ExecutorModule::scriptname() const
|
|
{
|
|
return exec.prog_->name;
|
|
}
|
|
}
|
|
} |