Free Electron
SurfaceAccessibleLua.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __surface_SurfaceAccessibleLua_h__
8 #define __surface_SurfaceAccessibleLua_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Lua Surface Binding
17 
18  The intent is to manipulate the input context surface or
19  to generate a new procedural surface.
20 
21  @ingroup lua
22 *//***************************************************************************/
23 class FE_DL_EXPORT SurfaceAccessibleLua:
25 {
26  public:
28 virtual ~SurfaceAccessibleLua(void);
29 
30  //* as SurfaceAccessibleI
31 
33 virtual BWORD load(String a_filename,sp<Catalog> a_spSettings);
34 
35  protected:
36 
37 virtual void reset(void);
38 
39  private:
40  sp<LuaI> m_spLuaI;
41  sp<Scope> m_spScope;
42  SystemTicker m_systemTicker;
43 };
44 
45 } /* namespace ext */
46 } /* namespace fe */
47 
48 #endif /* __surface_SurfaceAccessibleLua_h__ */
kernel
Definition: namespace.dox:3
Lua Surface Binding.
Definition: SurfaceAccessibleLua.h:23
High precision timer.
Definition: SystemTicker.h:174
Automatically reference-counted string container.
Definition: String.h:128
Record Surface Binding.
Definition: SurfaceAccessibleRecord.h:20
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53
virtual BWORD load(String a_filename, sp< Catalog > a_spSettings)
load model data with settings
Definition: SurfaceAccessibleRecord.cc:247