2004-01-28 00:22:16 +03:00
|
|
|
/*
|
|
|
|
* SpoolMetaData.h
|
|
|
|
* Copyright 2003 Michael Pfeiffer. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SPOOLMETADATA_H
|
|
|
|
#define __SPOOLMETADATA_H
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#include <File.h>
|
|
|
|
#include <string>
|
2010-12-08 23:07:22 +03:00
|
|
|
|
2006-10-24 02:39:57 +04:00
|
|
|
using namespace std;
|
2004-01-28 00:22:16 +03:00
|
|
|
|
|
|
|
class SpoolMetaData {
|
2010-12-08 23:07:22 +03:00
|
|
|
public:
|
|
|
|
SpoolMetaData(BFile* spool_file);
|
|
|
|
~SpoolMetaData();
|
|
|
|
|
|
|
|
const string& GetDescription() const;
|
|
|
|
const string& GetMimeType() const;
|
|
|
|
const string& GetCreationTime() const;
|
|
|
|
|
2004-01-28 00:22:16 +03:00
|
|
|
private:
|
2004-01-30 20:10:36 +03:00
|
|
|
string fDescription;
|
|
|
|
string fMimeType;
|
|
|
|
string fCreationTime;
|
2004-01-28 00:22:16 +03:00
|
|
|
};
|
|
|
|
|
2010-12-08 23:07:22 +03:00
|
|
|
|
2004-01-28 00:22:16 +03:00
|
|
|
#endif /* __SpoolMetaData_H */
|