Free Electron
SurfaceOBJ.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_SurfaceOBJ_h__
8 #define __surface_SurfaceOBJ_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Surface in raw OBJ format
17 
18  @ingroup surface
19 *//***************************************************************************/
20 class FE_DL_EXPORT SurfaceOBJ:
21  public SurfaceTriangles,
22  public Initialize<SurfaceOBJ>
23 {
24  public:
25  SurfaceOBJ(void);
26 virtual ~SurfaceOBJ(void) {}
27 
28 void initialize(void);
29 
30  //* As Protectable
31 virtual Protectable* clone(Protectable* pInstance=NULL);
32 
33  private:
34 virtual void cache(void);
35 };
36 
37 } /* namespace ext */
38 } /* namespace fe */
39 
40 #endif /* __surface_SurfaceOBJ_h__ */
41 
42 
Discrete Triangle Surface.
Definition: SurfaceTriangles.h:20
Surface in raw OBJ format.
Definition: SurfaceOBJ.h:20
Base class providing protection counting for cp<>
Definition: Protectable.h:28
kernel
Definition: namespace.dox:3
Per-class participation in the Initialized <> mechanism.
Definition: Initialized.h:117