新增了PQDIF补招线程,导入了新的lib库
This commit is contained in:
76
LFtid1056/pqdif/include/rec_container.h
Normal file
76
LFtid1056/pqdif/include/rec_container.h
Normal file
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
** 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:
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user