C++ Library to handle BagIt structures. BagIt is a standard format to create transfer packages for digital preservation purposes. See https://en.wikipedia.org/wiki/BagIt for details
http://andreas-romeyke.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
411 B
18 lines
411 B
#ifndef LIBCBAG_PAYLOADMANIFEST
|
|
#define LIBCBAG_PAYLOADMANIFEST
|
|
#include <string>
|
|
#include <map>
|
|
#include "checksum.hpp"
|
|
#include "manifest.hpp"
|
|
|
|
using namespace std;
|
|
|
|
class Payloadmanifest : public Manifest {
|
|
private:
|
|
map<checksum_algorithms,string> manifest_algorithm_files;
|
|
public:
|
|
Payloadmanifest( string basedir );
|
|
};
|
|
|
|
#endif
|
|
// vim: set tabstop=4 softtabstop=0 expandtab shiftwidth=4 smarttab
|