mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Add vc12 project files for MFC samples. CMake - add Unicode option for MFC samples CMake - do not set MFC option globally Update description of Cmake building procedure for MFC sample Correction of cmake.md and automake.md 0024943: Port MFC sample to UNICODE for compatibility with VS2013 The formatting of developer guides about OCCT building with various build systems has been improved. automake article clean up
39 lines
1.1 KiB
C++
Executable File
39 lines
1.1 KiB
C++
Executable File
// OCC_3dDoc.h: interface for the OCC_3dDoc class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_OCC_3DDOC_H__1F4065AD_39C4_11D7_8611_0060B0EE281E__INCLUDED_)
|
|
#define AFX_OCC_3DDOC_H__1F4065AD_39C4_11D7_8611_0060B0EE281E__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "OCC_3dBaseDoc.h"
|
|
#include "ResultDialog.h"
|
|
#include <Standard_Macro.hxx>
|
|
|
|
class AFX_EXT_CLASS OCC_3dDoc : public OCC_3dBaseDoc
|
|
{
|
|
public:
|
|
void SetDialogTitle(TCollection_AsciiString theTitle);
|
|
CString GetDialogText();
|
|
OCC_3dDoc();
|
|
virtual ~OCC_3dDoc();
|
|
|
|
void PocessTextInDialog (CString theTitle, CString theMessage);
|
|
void PocessTextInDialog (CString theTitle, const TCollection_AsciiString& theMessage)
|
|
{
|
|
CString aMessage (theMessage.ToCString());
|
|
PocessTextInDialog (theTitle, aMessage);
|
|
}
|
|
void ClearDialog();
|
|
void AddTextInDialog(TCollection_AsciiString& aMessage);
|
|
|
|
|
|
protected:
|
|
CResultDialog myCResultDialog;
|
|
};
|
|
|
|
#endif // !defined(AFX_OCC_3DDOC_H__1F4065AD_39C4_11D7_8611_0060B0EE281E__INCLUDED_)
|