mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 05:49:11 +01:00
a54ff70ff4
f110272
Remove `namespace fs=fs` (Wladimir J. van der Laan)75594bd
torcontrol: Use fs::path instead of std::string for private key path (Wladimir J. van der Laan)2a5f574
Use fsbridge for fopen and freopen (Wladimir J. van der Laan)bac5c9c
Replace uses of boost::filesystem with fs (Wladimir J. van der Laan)7d5172d
Replace includes of boost/filesystem.h with fs.h (Wladimir J. van der Laan)19e36bb
Add fs.cpp/h (Wladimir J. van der Laan) Tree-SHA512: 2c34f059dfa6850b9323f3389e9090a6b5f839a457a2960d182c2ecfafd9883c956f5928bb796613402d3aad68ebc78259796a7a313f4a6cfa98aaf507a66842
18 lines
312 B
C++
18 lines
312 B
C++
#include "fs.h"
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
namespace fsbridge {
|
|
|
|
FILE *fopen(const fs::path& p, const char *mode)
|
|
{
|
|
return ::fopen(p.string().c_str(), mode);
|
|
}
|
|
|
|
FILE *freopen(const fs::path& p, const char *mode, FILE *stream)
|
|
{
|
|
return ::freopen(p.string().c_str(), mode, stream);
|
|
}
|
|
|
|
} // fsbridge
|