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.
21 lines
533 B
21 lines
533 B
#ifndef LIBCBAG_TAGMANIFEST
|
|
#define LIBCBAG_TAGMANIFEST
|
|
#include <string>
|
|
#include <map>
|
|
#include "checksum.hpp"
|
|
#include "manifest.hpp"
|
|
|
|
using namespace std;
|
|
|
|
class Tagmanifest : public Manifest {
|
|
private:
|
|
map<checksum_algorithms,string> manifest_algorithm_files;
|
|
bool exist_manifest_files;
|
|
public:
|
|
Tagmanifest( string basedir );
|
|
bool has_tagmanifest();
|
|
map<string,string> get_checksum_file_pairs(checksum_algorithms algorithm);
|
|
};
|
|
|
|
#endif
|
|
// vim: set tabstop=4 softtabstop=0 expandtab shiftwidth=4 smarttab
|