4a0c1e139d
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39771 a95241bf-73f2-0310-859d-f6bbb57e9c96
32 lines
544 B
C++
32 lines
544 B
C++
/*
|
|
* SpoolMetaData.h
|
|
* Copyright 2003 Michael Pfeiffer. All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef __SPOOLMETADATA_H
|
|
#define __SPOOLMETADATA_H
|
|
|
|
#include <SupportDefs.h>
|
|
#include <File.h>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
class SpoolMetaData {
|
|
public:
|
|
SpoolMetaData(BFile* spool_file);
|
|
~SpoolMetaData();
|
|
|
|
const string& GetDescription() const;
|
|
const string& GetMimeType() const;
|
|
const string& GetCreationTime() const;
|
|
|
|
private:
|
|
string fDescription;
|
|
string fMimeType;
|
|
string fCreationTime;
|
|
};
|
|
|
|
|
|
#endif /* __SpoolMetaData_H */
|