polserver/pol-core/bscript/execmodl.cpp
turley 99d7dc3037 namespaces...finally :)
Hard part is finished every file is touched. Namespaces are currently rough named by directory name.
Maybe we could split it more
2013-12-21 09:10:46 +00:00

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;
}
}
}