Free Electron
SurfaceAccessibleXml.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 __xml_SurfaceAccessibleXml_h__
8 #define __xml_SurfaceAccessibleXml_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief XML Surface Binding
16 
17  @ingroup xml
18 *//***************************************************************************/
19 class FE_DL_EXPORT SurfaceAccessibleXml:
21 {
22  public:
23  SurfaceAccessibleXml(void) {}
24 virtual ~SurfaceAccessibleXml(void) {}
25 
26  //* as SurfaceAccessibleI
27 
29 
30 virtual BWORD load(String a_filename,
31  sp<Catalog> a_spSettings);
32 
33  private:
34 
35  SpatialTransform interpretEuler(pugi::xml_node& a_rNode,
36  String a_attrName,String a_attrOrder);
37  String interpretString(pugi::xml_node& a_rNode,
38  String a_attrName);
39  SpatialVector interpretVector(pugi::xml_node& a_rNode,
40  String a_attrName);
41  SpatialTransform interpretTransform(pugi::xml_node& a_rNode,
42  String a_attrName);
43 };
44 
45 } /* namespace ext */
46 } /* namespace fe */
47 
48 #endif /* __xml_SurfaceAccessibleXml_h__ */
XML Surface Binding.
Definition: SurfaceAccessibleXml.h:19
kernel
Definition: namespace.dox:3
virtual BWORD load(String a_filename, sp< Catalog > a_spSettings)
load model data with settings
Definition: SurfaceAccessibleJoint.h:32
Automatically reference-counted string container.
Definition: String.h:128
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53
Joint Surface Binding.
Definition: SurfaceAccessibleJoint.h:20