Program Listing for File Compression.hpp¶
↰ Return to documentation for file (include/nix/Compression.hpp)
// Copyright (c) 2017, German Neuroinformatics Node (G-Node)
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted under the terms of the BSD License. See
// LICENSE file in the root of the Project.
#ifndef I_COMPRESSION_H
#define I_COMPRESSION_H
namespace nix {
enum class Compression {
None = 0,
DeflateNormal,
Auto
};
}
#endif // NIX_COMPRESSION_H