xref: /haiku/headers/libs/print/libprint/SpoolMetaData.h (revision e81a954787e50e56a7f06f72705b7859b6ab06d1)
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 
13 using namespace std;
14 
15 class SpoolMetaData {
16 public:
17 						SpoolMetaData(BFile* spool_file);
18 						~SpoolMetaData();
19 
20 	const string&		GetDescription() const;
21 	const string&		GetMimeType() const;
22 	const string&		GetCreationTime() const;
23 
24 private:
25 	string fDescription;
26 	string fMimeType;
27 	string fCreationTime;
28 };
29 
30 
31 #endif	/* __SpoolMetaData_H */
32