home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
online
/
source
/
cpp
/
graphics
/
Conics.sit.hqx
/
Conics
/
Include
/
DocWindows.h
< prev
next >
Wrap
Text File
|
1996-11-13
|
470b
|
26 lines
//Copyright 1996 Aidan Cully
//All rights reserved
#ifndef __COPYWINDOWS_H
#define __COPYWINDOWS_H
#include "OffScreen.h"
#include "Conic.h"
class TDocWindow:public TOffScreen {
protected:
TConic *conic;
TPlane *plane;
public:
class TDocInit:public TInitStruct {
public:
TConic *conic;
TPlane *plane;
};
virtual Boolean Init( TInitStruct* );
virtual SInt8 HandleAction( UInt32 );
virtual SInt8 MakeActive( Boolean );
virtual void CopyWindow();
};
#endif