mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 22:31:29 +03:00
27 lines
396 B
C++
27 lines
396 B
C++
#pragma once
|
|
|
|
#include "String.h"
|
|
#include <stdio.h>
|
|
|
|
namespace AK {
|
|
|
|
class TemporaryFile {
|
|
public:
|
|
TemporaryFile();
|
|
~TemporaryFile();
|
|
|
|
bool isValid() const { return m_stream; }
|
|
FILE* stream() { return m_stream; }
|
|
String fileName() const { return m_fileName; }
|
|
void sync();
|
|
|
|
private:
|
|
FILE* m_stream { nullptr };
|
|
String m_fileName;
|
|
};
|
|
|
|
}
|
|
|
|
using AK::TemporaryFile;
|
|
|