theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_Class_CC_API

LcSettingC - define the class … More...

+ Collaboration diagram for LcSettingC_Class_CC_API:

Functions

static LcSettingCcclcconfig::LcSettingC::HandleResolve (MK_HDL netHdl)
  C++: [static] LcSettingC* LcSettingC::HandleResolve(MK_HDL netHdl) C-API
Handle-Resolve-Slot - return a LcSettingC from netHdl or MK_NULL if invalid…
 
LcSettingCcclcconfig::LcSettingC::Next ()
  C++: LcSettingC* cfs.Next() C-API
get next instance from linked-list of LcSettingS type
 
LcSettingCcclcconfig::LcSettingC::Prev ()
  C++: LcSettingC* cfs.Prev() C-API
get previous instance from linked-list of LcSettingS type
 
static LcSettingCcclcconfig::LcSettingC::Instances ()
  C++: [static] LcSettingC* LcSettingC::Instances() C-API
get head-instance from linked-list of LcSettingS type …
 
static LcSettingCcclcconfig::LcSettingC::GetNull ()
  C++: [static] LcSettingC* LcSettingC::GetNull() C-API
Null-Slot - return a LcSettingC typed NULL instance …
 

Detailed Description

LcSettingC - define the class …

Function Documentation

◆ GetNull()

LcSettingC * cclcconfig::LcSettingC::GetNull ( )
inlinestatic

C++: [static] LcSettingC* LcSettingC::GetNull() C-API
Null-Slot - return a LcSettingC typed NULL instance …

Definition at line 91 of file LcSettingC_inline_cc.hh.

91 {
93 LC_CFS __retVal__L = LcSettingGetNull();
94 return LcSettingC::LcSettingC_ObjNew(MK_RT_CALL __retVal__L);
95 }
static LcSettingC * LcSettingC_ObjNew(MK_RT_ARGS LC_CFS hdl)
return LcSettingC from LibMsgqueObject
static LC_CFS LcSettingGetNull(void)
Null-Slot - return a LcSettingC typed NULL instance …
struct LcSettingS * LC_CFS
class-shortcut for struct LcSettingS *, all shortcut using the XX_YYY syntax (only for public API) …
#define MK_RT_CALL
#define MkRtSetup_NULL

◆ HandleResolve()

LcSettingC * cclcconfig::LcSettingC::HandleResolve ( MK_HDL netHdl)
inlinestatic

C++: [static] LcSettingC* LcSettingC::HandleResolve(MK_HDL netHdl) C-API
Handle-Resolve-Slot - return a LcSettingC from netHdl or MK_NULL if invalid…

Definition at line 39 of file LcSettingC_inline_cc.hh.

39 {
41 LC_CFS __retVal__L = LcSettingHandleResolve(netHdl);
42 return LcSettingC::LcSettingC_ObjNew(MK_RT_CALL __retVal__L);
43 }
#define LcSettingHandleResolve(...)

◆ Instances()

LcSettingC * cclcconfig::LcSettingC::Instances ( )
inlinestatic

C++: [static] LcSettingC* LcSettingC::Instances() C-API
get head-instance from linked-list of LcSettingS type …

Definition at line 75 of file LcSettingC_inline_cc.hh.

75 {
77 LC_CFS __retVal__L = LcSettingInstances();
78 return LcSettingC::LcSettingC_ObjNew(MK_RT_CALL __retVal__L);
79 }
#define LcSettingInstances()

◆ Next()

LcSettingC * cclcconfig::LcSettingC::Next ( )
inline

C++: LcSettingC* cfs.Next() C-API
get next instance from linked-list of LcSettingS type

Definition at line 59 of file LcSettingC_inline_cc.hh.

59 {
60 MK_UNUSED auto cfs = getCFS();
61 LC_CFS __retVal__L = LcSettingNext(cfs);
62 return LcSettingC::LcSettingC_ObjNew(MK_RT_CALL __retVal__L);
63 }
LC_CFS getCFS() const
return the LibMsgqueObject from current LcSettingC instance
static LC_CFS LcSettingNext(LC_CFS const cfs)
get next instance from linked-list of LcSettingS type
#define MK_UNUSED

◆ Prev()

LcSettingC * cclcconfig::LcSettingC::Prev ( )
inline

C++: LcSettingC* cfs.Prev() C-API
get previous instance from linked-list of LcSettingS type

Definition at line 66 of file LcSettingC_inline_cc.hh.

66 {
67 MK_UNUSED auto cfs = getCFS();
68 LC_CFS __retVal__L = LcSettingPrev(cfs);
69 return LcSettingC::LcSettingC_ObjNew(MK_RT_CALL __retVal__L);
70 }
static LC_CFS LcSettingPrev(LC_CFS const cfs)
get previous instance from linked-list of LcSettingS type