Files
foobar2000-sdk/foobar2000/helpers/text_file_loader_v2.h
2021-12-14 00:28:25 -07:00

14 lines
226 B
C++

#pragma once
#include <vector>
#include <list>
class text_file_loader_v2 {
public:
bool m_forceUTF8 = false;
void load(file::ptr f, abort_callback & abort);
std::vector< const char * > m_lines;
pfc::string8 m_data;
};