summaryrefslogtreecommitdiff
path: root/Kernel/KParams.h
blob: d3fb1cd38f5ca8e0169813439a1de0877b2465b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <AK/String.h>
#include <AK/HashMap.h>

class KParams {
    AK_MAKE_ETERNAL
public:
    static KParams& the();

    KParams(const String& cmdline);

    const String& cmdline() const { return m_cmdline; }
    String get(const String& key) const;
    bool has(const String& key) const;

private:
    String m_cmdline;
    HashMap<String, String> m_params;
};