15 lines
231 B
C
15 lines
231 B
C
|
#pragma once
|
||
|
|
||
|
#include <filesystem>
|
||
|
#include <memory>
|
||
|
|
||
|
#include "component.h"
|
||
|
|
||
|
class File : public Component {
|
||
|
public:
|
||
|
File(const std::shared_ptr<Collection>& collection, const std::shared_ptr<Logger>& logger);
|
||
|
|
||
|
protected:
|
||
|
|
||
|
};
|