77 lines
2.2 KiB
C
77 lines
2.2 KiB
C
|
|
/*
|
||
|
|
** class CPQDIF_R_Container
|
||
|
|
** --------------------------------------------------------------------------
|
||
|
|
**
|
||
|
|
** File name: $Workfile: rec_container.h $
|
||
|
|
** Last modified: $Modtime: 7/07/99 8:12p $
|
||
|
|
** Last modified by: $Author: Erich $
|
||
|
|
**
|
||
|
|
** VCS archive path: $Archive: /PQDIF/PQDcom/PQDcom4/pqdiflib/rec_container.h $
|
||
|
|
** VCS revision: $Revision: 3 $
|
||
|
|
*/
|
||
|
|
|
||
|
|
class CPQDIF_R_Container : public CPQDIF_R_General
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CPQDIF_R_Container();
|
||
|
|
virtual ~CPQDIF_R_Container();
|
||
|
|
|
||
|
|
// Operations
|
||
|
|
public:
|
||
|
|
bool GetTagFileName(string& strFileName);
|
||
|
|
bool GetInfo();
|
||
|
|
|
||
|
|
bool SetInfo
|
||
|
|
(
|
||
|
|
const char * language,
|
||
|
|
const char * title,
|
||
|
|
const char * subject,
|
||
|
|
const char * author,
|
||
|
|
const char * keywords,
|
||
|
|
const char * comments,
|
||
|
|
const char * lastSavedBy,
|
||
|
|
const char * application,
|
||
|
|
const char * security,
|
||
|
|
const char * owner,
|
||
|
|
const char * copyright,
|
||
|
|
const char * trademarks,
|
||
|
|
const char * notes
|
||
|
|
);
|
||
|
|
|
||
|
|
bool SetInfo1
|
||
|
|
(
|
||
|
|
const char * language,
|
||
|
|
const char * title,
|
||
|
|
const char * subject,
|
||
|
|
const char * author,
|
||
|
|
const char * keywords,
|
||
|
|
const char * comments,
|
||
|
|
const char * lastSavedBy,
|
||
|
|
const char * application,
|
||
|
|
const char * security,
|
||
|
|
const char * owner,
|
||
|
|
const char * copyright,
|
||
|
|
const char * trademarks,
|
||
|
|
const char * notes,
|
||
|
|
const char * ApplicationVersion,
|
||
|
|
const char * SystemName,
|
||
|
|
const char * SystemVersion
|
||
|
|
);
|
||
|
|
|
||
|
|
bool GetCompressionInfo
|
||
|
|
(
|
||
|
|
UINT4& styleComp, // Compression style (output)
|
||
|
|
UINT4& algComp // Compression algorithm (output)
|
||
|
|
);
|
||
|
|
|
||
|
|
bool SetTimeCreationAndTimeLastSaved
|
||
|
|
(
|
||
|
|
const TIMESTAMPPQDIF& timeCreation,
|
||
|
|
const TIMESTAMPPQDIF& timeLastSaved
|
||
|
|
);
|
||
|
|
// Local data
|
||
|
|
private:
|
||
|
|
|
||
|
|
};
|
||
|
|
|