1/*
2 * SpoolMetaData.h
3 * Copyright 2003 Michael Pfeiffer. All Rights Reserved.
4 */
5
6#ifndef __SPOOLMETADATA_H
7#define __SPOOLMETADATA_H
8
9#include <SupportDefs.h>
10#include <File.h>
11#include <string>
12
13using namespace std;
14
15class SpoolMetaData {
16public:
17						SpoolMetaData(BFile* spool_file);
18						~SpoolMetaData();
19
20	const string&		GetDescription() const;
21	const string&		GetMimeType() const;
22	const string&		GetCreationTime() const;
23
24private:
25	string fDescription;
26	string fMimeType;
27	string fCreationTime;
28};
29
30
31#endif	/* __SpoolMetaData_H */
32