diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:48:14 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:48:14 +0200 |
commit | d8289105193707daede1a5b59137f18e20f20aeb (patch) | |
tree | 939908b9c4c6f7aaef8aa61ee2e04be3e85610b6 /FileStrategy.h | |
parent | 76e61d68bbf568ec0d7fc4632e52d4de5496b003 (diff) |
(2/2) rename
Diffstat (limited to 'FileStrategy.h')
-rw-r--r-- | FileStrategy.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/FileStrategy.h b/FileStrategy.h deleted file mode 100644 index f896ec8..0000000 --- a/FileStrategy.h +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -class FileReaderFactory; - -#include <string> - -class FileReader { -protected: - virtual void open(const std::string url) = 0; -public: - virtual void close() = 0; - virtual const std::string read() = 0; - -public: - virtual ~FileReader() = default; - -protected: - FileReader() = default; - virtual FileReader * clone() const = 0; - -protected: - FileReader(const std::string protocol); - friend FileReaderFactory; -}; - |