Web framework C++  2.0.0
Simple web framework on c++ designed to easily create web pages, etc
fs_unix_builder.h
Go to the documentation of this file.
1 #pragma once
2 #ifdef __linux__
3 #include "fs_builder.h"
4 
11 class FsUnixBuilder : public FsBuilder {
12 public:
21  FsFile * buildFile(std::string & filePath) override;
22 
34  FsFolder * buildFolder(std::string & folderPath, const char * folderName) override;
35 };
36 
37 #endif
Representation of file in filesystem.
Definition: fs_file.h:10
Builder template for FsMiddleware.
Definition: fs_builder.h:15
Representation of folder in filesystem.
Definition: fs_folder.h:11
virtual FsFolder * buildFolder(std::string &folderPath, const char *folderName)=0
virtual FsFile * buildFile(std::string &filePath)=0