#ifndef LIBCBAG_TAGMANIFEST
|
|
#define LIBCBAG_TAGMANIFEST
|
|
#include <string>
|
|
#include <map>
|
|
#include "checksum.hpp"
|
|
#include "manifest.hpp"
|
|
|
|
using namespace std;
|
|
|
|
class Tagmanifest : public Manifest {
|
|
private:
|
|
bool exist_manifest_files;
|
|
public:
|
|
Tagmanifest( string basedir );
|
|
bool has_tagmanifest();
|
|
multimap<checksum_string_t,filename_t> get_checksum_file_pairs(checksum_algorithms algorithm);
|
|
};
|
|
|
|
#endif
|
|
// vim: set tabstop=4 softtabstop=0 expandtab shiftwidth=4 smarttab
|