You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/jinja2cpp/filesystem_handler.h
+26-1Lines changed: 26 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@
3
3
4
4
#include"config.h"
5
5
6
+
#include<jinja2cpp/utils/i_comparable.h>
7
+
6
8
#include<nonstd/optional.hpp>
7
9
#include<nonstd/variant.hpp>
8
10
@@ -28,7 +30,7 @@ using WCharFileStreamPtr = FileStreamPtr<wchar_t>;
28
30
* So, the exact type (ex. `ifstream`, `istringstream` etc.) of input stream is unspecified. In order to delete stream object correctly returned pointer
29
31
* provide the custom deleter which should properly delete the stream object.
30
32
*/
31
-
classJINJA2CPP_EXPORT IFilesystemHandler
33
+
classJINJA2CPP_EXPORT IFilesystemHandler : public IComparable
32
34
{
33
35
public:
34
36
//! Destructor
@@ -101,11 +103,27 @@ class JINJA2CPP_EXPORT MemoryFileSystem : public IFilesystemHandler
0 commit comments