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

qttorch.h - github.com/torch/qttorch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34118c1d7e392043c0f85974142b8399b8ee7204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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:
   ------------------------------------------------------------- */