Free Electron
LeafLevel.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 __vegetation_LeafLevel_h__
8 #define __vegetation_LeafLevel_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief LeafLevel RecordView
17 
18  @ingroup vegetation
19 *//***************************************************************************/
20 class FE_DL_EXPORT LeafLevel: virtual public TreeLevel
21 {
22  public:
23 
24  LeafLevel(void) { setName("LeafLevel"); }
25 virtual void addFunctors(void)
26  {
28  }
29 virtual void initializeRecord(void)
30  {
32  }
33 };
34 
35 } /* namespace ext */
36 } /* namespace fe */
37 
38 #endif /* __vegetation_LeafLevel_h__ */
39 
40 
41 
virtual void initializeRecord(void)
Called at instantiation to initialize attributes.
Definition: TreeLevel.h:56
kernel
Definition: namespace.dox:3
virtual void addFunctors(void)
Called at instantiation to add functors.
Definition: TreeLevel.h:44
virtual void initializeRecord(void)
Called at instantiation to initialize attributes.
Definition: LeafLevel.h:29
TreeLevel RecordView.
Definition: TreeLevel.h:30
LeafLevel RecordView.
Definition: LeafLevel.h:20
virtual void addFunctors(void)
Called at instantiation to add functors.
Definition: LeafLevel.h:25