2f6e49a929
Renamed many constants and fields according to Open BeOS coding style guide. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6433 a95241bf-73f2-0310-859d-f6bbb57e9c96
29 lines
578 B
C++
29 lines
578 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>
|
|
|
|
class SpoolMetaData {
|
|
private:
|
|
string fDescription;
|
|
string fMimeType;
|
|
string fCreationTime;
|
|
|
|
public:
|
|
SpoolMetaData(BFile* spool_file);
|
|
~SpoolMetaData();
|
|
|
|
const string& getDescription() const { return fDescription; }
|
|
const string& getMimeType() const { return fMimeType; }
|
|
const string& getCreationTime() const { return fCreationTime; }
|
|
};
|
|
|
|
#endif /* __SpoolMetaData_H */
|