Files
quark-kernel/src/module.hpp
2020-12-11 09:19:29 -06:00

39 lines
416 B
C++

#ifndef ELF_H
#define ELF_H
#include <stdint.h>
#include "systypes.hpp"
namespace kernelns
{
class Module
{
public:
Module();
Module(physaddr_t start, physaddr_t end, const char* command);
~Module();
physaddr_t getStart() const;
physaddr_t getEnd() const;
const char* getCommand() const;
private:
physaddr_t m_start;
physaddr_t m_end;
char* m_command;
};
}
#endif