Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/qttorch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qttorch.h')
-rw-r--r--qttorch.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/qttorch.h b/qttorch.h
new file mode 100644
index 0000000..34118c1
--- /dev/null
+++ b/qttorch.h
@@ -0,0 +1,34 @@
+// -*- C++ -*-
+
+#ifndef QTTORCH_H
+#define QTTORCH_H
+
+#include "lua.h"
+#include "lauxlib.h"
+#include "qtluaengine.h"
+#include "qtluautils.h"
+
+
+#ifdef LUA_BUILD_AS_DLL
+# ifdef libqttorch_EXPORTS
+# define QTTORCH_API __declspec(dllexport)
+# else
+# define QTTORCH_API __declspec(dllimport)
+# endif
+#else
+# define QTTORCH_API /**/
+#endif
+
+LUA_EXTERNC QTTORCH_API int luaopen_libqttorch(lua_State *L);
+
+
+#endif
+
+
+/* -------------------------------------------------------------
+ Local Variables:
+ c++-font-lock-extra-types: ("\\sw+_t" "\\(lua_\\)?[A-Z]\\sw*[a-z]\\sw*")
+ End:
+ ------------------------------------------------------------- */
+
+