73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
/*=========================================================================*/
|
|
/* CPADgCam.hpp : For CPADgCam.cpp*/
|
|
/* This is a part of the CPA project.*/
|
|
/**/
|
|
/* Version 1.0*/
|
|
/* Creation date 16/07/96*/
|
|
/* Revision date*/
|
|
/**/
|
|
/* (c) Ubi Studios 1996*/
|
|
/**/
|
|
/* DO NOT MODIFY THAT FILE. IF SOMETHING NEEDS TO BE CHANGE, PLEASE CONTACT */
|
|
/* VINCENT GRECO OR CHRISTOPHE BEAUDET.*/
|
|
/*=========================================================================*/
|
|
|
|
#ifndef __CPADGCAM_HPP__
|
|
#define __CPADGCAM_HPP__
|
|
|
|
/****************************************/
|
|
#ifndef CPA_EXPORT
|
|
#if defined(CPA_WANTS_IMPORT)
|
|
#define CPA_EXPORT __declspec(dllimport)
|
|
#elif defined(CPA_WANTS_EXPORT)
|
|
#define CPA_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define CPA_EXPORT
|
|
#endif
|
|
#endif
|
|
/****************************************/
|
|
|
|
#ifdef ACTIVE_EDITOR
|
|
|
|
#include "CPARes.h"
|
|
|
|
/*///////////////////////////////////////////////////////////////////////////*/
|
|
/* CPA_DialogCamera dialog*/
|
|
|
|
class CPA_EXPORT CPA_DialogCamera : public CDialog
|
|
{
|
|
/* Construction*/
|
|
public:
|
|
CPA_DialogCamera(CWnd* pParent = NULL); /* standard constructor*/
|
|
|
|
int m_iRotate; /* Value of combo set*/
|
|
int m_iTranslate; /* Value of combo set*/
|
|
|
|
/* Dialog Data*/
|
|
/*{{AFX_DATA(CPA_DialogCamera)*/
|
|
enum { IDD = CPA_IDD_CAMERA };
|
|
/* NOTE: the ClassWizard will add data members here*/
|
|
/*}}AFX_DATA*/
|
|
|
|
int DoModal(void);
|
|
|
|
/* Overrides*/
|
|
/* ClassWizard generated virtual function overrides*/
|
|
/*{{AFX_VIRTUAL(CPA_DialogCamera)*/
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); /* DDX/DDV support*/
|
|
/*}}AFX_VIRTUAL*/
|
|
|
|
/* Implementation*/
|
|
protected:
|
|
|
|
/* Generated message map functions*/
|
|
/*{{AFX_MSG(CPA_DialogCamera)*/
|
|
/* NOTE: the ClassWizard will add member functions here*/
|
|
/*}}AFX_MSG*/
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /* ACTIVE_EDITOR*/
|
|
#endif /* __CPADGCAM_HPP__*/
|