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.
11 lines
146 B
11 lines
146 B
#ifndef LIBCBAG
|
|
#define LIBCBAG
|
|
#include <string>
|
|
using namespace std;
|
|
class manifest{
|
|
public:
|
|
manifest();
|
|
};
|
|
|
|
#endif
|
|
// vim: set tabstop=4
|