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.
6 lines
122 B
6 lines
122 B
#include "bag.hpp"
|
|
#include <iostream>
|
|
|
|
bag::bag( string dfname ) {
|
|
cout << "load constructor (" << dfname << endl;
|
|
}
|