Added Fix to put Options inside the File Impl Classes

This commit is contained in:
Jan Kevin Dick
2019-11-27 14:44:55 +01:00
parent 9daaec4ec0
commit 0a9525044d
5 changed files with 15 additions and 5 deletions

View File

@@ -73,7 +73,7 @@ public:
enum Options
/// Options for File Copy/Movement
{
OPT_FAIL_ON_OVERWRITE = 0x01
OPT_FAIL_ON_OVERWRITE = OPT_FAIL_ON_OVERWRITE_IMPL
};
File();

View File

@@ -27,6 +27,11 @@ namespace Poco {
class FileImpl
{
protected:
enum Options {
OPT_FAIL_ON_OVERWRITE_IMPL = 0x01
};
typedef UInt64 FileSizeImpl;
FileImpl();

View File

@@ -28,6 +28,11 @@ namespace Poco {
class Foundation_API FileImpl
{
protected:
enum Options {
OPT_FAIL_ON_OVERWRITE_IMPL = 0x01
};
typedef UInt64 FileSizeImpl;
FileImpl();