mirror of
https://github.com/ModOrganizer2/libbsarch.git
synced 2026-07-27 14:06:31 -07:00
Readded .editorconfig C wrapper can be built again Delphi library can be built again Initial cleanup of cmake files
25 lines
545 B
C++
25 lines
545 B
C++
#pragma once
|
|
|
|
#include "libbsarch.hpp"
|
|
#include <vector>
|
|
|
|
namespace libbsarch {
|
|
class bs_archive_entries
|
|
{
|
|
public:
|
|
bs_archive_entries();
|
|
explicit bs_archive_entries(const std::vector<convertible_string> &entries);
|
|
explicit bs_archive_entries(const bsa_entry_list_t &entries);
|
|
~bs_archive_entries();
|
|
|
|
void add(const convertible_string &filepath);
|
|
uint32_t count();
|
|
std::vector<convertible_string> list();
|
|
|
|
bsa_entry_list_t getEntries() const;
|
|
|
|
protected:
|
|
bsa_entry_list_t _entries;
|
|
};
|
|
} // namespace libbsarch
|