You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
407 B
C++
20 lines
407 B
C++
#pragma once
|
|
#include "item.h"
|
|
|
|
namespace NItem
|
|
{
|
|
|
|
class CItemExportFile :
|
|
public CItem
|
|
{
|
|
public:
|
|
CItemExportFile(CSigmaDoc * ppDoc);
|
|
virtual ~CItemExportFile(void);
|
|
|
|
bool Export(LPCTSTR lpFileName, CSize sz, UINT bpp = 24);
|
|
|
|
CMemoryDC* ExportImage(CSize sz, UINT bpp = 24);
|
|
BOOL ExportImage(LPCTSTR lpFileName, CSize sz, UINT bpp = 24);
|
|
BOOL ExportWMF(LPCTSTR lpFileName, CSize sz);
|
|
};
|
|
}; |