9 lines
121 B
C++
9 lines
121 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
|
|
class File
|
|
{
|
|
File(const std::string& path);
|
|
void Write(const std::string& content);
|
|
}; |