1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/components/esm/format.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
396 B
C++
Raw Normal View History

2022-04-14 16:46:57 +02:00
#ifndef COMPONENT_ESM_FORMAT_H
#define COMPONENT_ESM_FORMAT_H
2022-10-09 20:26:20 +02:00
#include "components/esm/fourcc.hpp"
2022-04-14 16:46:57 +02:00
#include <cstdint>
#include <iosfwd>
2022-04-14 16:46:57 +02:00
#include <string_view>
namespace ESM
{
enum class Format : std::uint32_t
{
Tes3 = fourCC("TES3"),
Tes4 = fourCC("TES4"),
};
Format readFormat(std::istream& stream);
Format parseFormat(std::string_view value);
}
#endif