23 lines
485 B
C++
23 lines
485 B
C++
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtoskrnl/includes/ob.hh
|
|
* DESCRIPTION: Object Manager
|
|
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
|
|
*/
|
|
|
|
#ifndef __XTOSKRNL_OB_HH
|
|
#define __XTOSKRNL_OB_HH
|
|
|
|
#include <xtos.hh>
|
|
|
|
#include <ob/devmap.hh>
|
|
#include <ob/lifecycl.hh>
|
|
#include <ob/obdir.hh>
|
|
#include <ob/obmgr.hh>
|
|
#include <ob/security.hh>
|
|
#include <ob/typereg.hh>
|
|
|
|
|
|
#endif /* __XTOSKRNL_OB_HH */
|