WebFramework v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
IFile.h
1#pragma once
2
3#include "Import/WebFrameworkCore.h"
4
5namespace framework
6{
7 namespace interfaces
8 {
9 class WEB_FRAMEWORK_API IFile
10 {
11 public:
12 virtual const std::filesystem::path& getPathToAssets() const = 0;
13
14 virtual ~IFile() = default;
15 };
16 }
17}