#include "lua-repl.h"
#include <stdarg.h>
#include <stddef.h>
#include "luaconf.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <wordexp.h>
#include <rtt/TaskContext.hpp>
#include <rtt/Port.hpp>
#include <rtt/types/Types.hpp>
#include <rtt/base/DataSourceBase.hpp>
#include <rtt/types/Operators.hpp>
#include <rtt/Logger.hpp>
#include <rtt/plugin/PluginLoader.hpp>
#include <rtt/os/TimeService.hpp>
#include <rtt/internal/GlobalService.hpp>
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
#include <string.h>
#include <string>
#include <rtt/os/main.h>
#include <rtt/os/Mutex.hpp>
#include <rtt/os/MutexLock.hpp>
#include <ocl/OCL.hpp>
#include <deployment/DeploymentComponent.hpp>
Go to the source code of this file.
Classes | |
class | OCL::LuaComponent |
Namespaces | |
namespace | OCL |
Defines | |
#define | INIT_FILE "~/.rttlua" |
Functions | |
int | dofile (lua_State *L, const char *name) |
int | dostring (lua_State *L, const char *s, const char *name) |
void | dotty (lua_State *L) |
void | l_message (const char *pname, const char *msg) |
int | main_args (lua_State *L, int argc, char **argv) |
int | ORO_main (int argc, char **argv) |
#define INIT_FILE "~/.rttlua" |
Definition at line 61 of file LuaComponent.cpp.
int dofile | ( | lua_State * | L, | |
const char * | name | |||
) |
Definition at line 142 of file lua-repl.c.
int dostring | ( | lua_State * | L, | |
const char * | s, | |||
const char * | name | |||
) |
Definition at line 148 of file lua-repl.c.
void dotty | ( | lua_State * | L | ) |
Definition at line 222 of file lua-repl.c.
void l_message | ( | const char * | pname, | |
const char * | msg | |||
) |
Definition at line 64 of file lua-repl.c.
int main_args | ( | lua_State * | L, | |
int | argc, | |||
char ** | argv | |||
) |
Definition at line 401 of file lua-repl.c.
int ORO_main | ( | int | argc, | |
char ** | argv | |||
) |
Definition at line 201 of file LuaComponent.cpp.