Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
ElfResourceManager.h
Go to the documentation of this file.
1/*/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#ifndef _Stroika_Foundation_Execution_Resources_Concrete_ElfResourceManager_h_
5#define _Stroika_Foundation_Execution_Resources_Concrete_ElfResourceManager_h_ 1
6
7#include "Stroika/Foundation/StroikaPreComp.h"
8
10#include "Stroika/Foundation/Common/Common.h"
11
12#include "Stroika/Foundation/Execution/Resources/Manager.h"
13
14/**
15 * \file
16 *
17 * TODO:
18 *
19 * @todo Research elf linker option, and think through how to use elf resource trick I used for
20 * monitoring app here - to provide a resrouce file like mechanism.
21 *
22 * @todo NOTHING implemented so far
23 */
24
25namespace Stroika::Foundation::Execution::Resources::Concrete {
26
27 /**
28 * NYI, but this will use the ELF gcc ld feature of letting you bind arbitrary files into an executable...
29 */
30 class ElfResourceManager : public Manager {
31 public:
33 };
34
35}
36
37/*
38 ********************************************************************************
39 ***************************** Implementation Details ***************************
40 ********************************************************************************
41 */
42#include "ElfResourceManager.inl"
43
44#endif /*_Stroika_Foundation_Execution_Resources_Concrete_ElfResourceManager_h_*/