Files
haiku-beta6/headers/private/print/libprint/SpoolMetaData.h
T

30 lines
599 B
C++
Raw Normal View History

2004-01-27 21:22:16 +00:00
/*
* SpoolMetaData.h
* Copyright 2003 Michael Pfeiffer. All Rights Reserved.
*/
#ifndef __SPOOLMETADATA_H
#define __SPOOLMETADATA_H
#include <SupportDefs.h>
#include <File.h>
#include <string>
2006-10-23 22:39:57 +00:00
using namespace std;
2004-01-27 21:22:16 +00:00
class SpoolMetaData {
private:
string fDescription;
string fMimeType;
string fCreationTime;
2004-01-27 21:22:16 +00:00
public:
SpoolMetaData(BFile* spool_file);
~SpoolMetaData();
const string& getDescription() const { return fDescription; }
const string& getMimeType() const { return fMimeType; }
const string& getCreationTime() const { return fCreationTime; }
2004-01-27 21:22:16 +00:00
};
#endif /* __SpoolMetaData_H */