Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / MFC

Porcupine

Rate me:
Please Sign up or sign in to vote.
4.78/5 (25 votes)
15 Sep 2009CPOL4 min read 570.2K   15.4K   118  
A library for visible and invisible image watermarking
// rotate.cpp : implementation file
//

#include "stdafx.h"
#include "eikona.h"
#include "rotate.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// rotate dialog


rotate::rotate(CWnd* pParent /*=NULL*/)
	: CDialog(rotate::IDD, pParent)
{
	//{{AFX_DATA_INIT(rotate)
	m_angle = 0;
	//}}AFX_DATA_INIT
}


void rotate::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(rotate)
	DDX_Text(pDX, IDC_EDIT1, m_angle);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(rotate, CDialog)
	//{{AFX_MSG_MAP(rotate)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// rotate message handlers

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Greece Greece
Physicist/SW Engineer

Comments and Discussions