libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::Initable Class Referenceabstract

Pure virtual base class for the library init system. More...

#include <Initable.hxx>

Protected Member Functions

 Initable (const InitPrio prio)
 
virtual void libInit ()=0
 
virtual void libExit ()=0
 
bool libInitialized () const
 

Friends

struct InitData
 

Detailed Description

Pure virtual base class for the library init system.

Each library facility in need of library pre-initialization can inherit from this base class and instantiate a globally statically initialized object from it.

It will automatically register at the library's init system and the init system will call libInit() and libExit() at the appropriate times.

Definition at line 28 of file Initable.hxx.

Constructor & Destructor Documentation

◆ Initable()

cosmos::Initable::Initable ( const InitPrio prio)
inlineexplicitprotected

Definition at line 33 of file Initable.hxx.

33 {
34 registerInitable(prio);
35 }

Member Function Documentation

◆ libInitialized()

bool cosmos::Initable::libInitialized ( ) const
inlineprotected

Definition at line 42 of file Initable.hxx.

42{ return m_lib_initialized; }

Friends And Related Symbol Documentation

◆ InitData

friend struct InitData
friend

Definition at line 29 of file Initable.hxx.


The documentation for this class was generated from the following files: