home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 May
/
VPR9705A.ISO
/
VPR_DATA
/
PROGRAM
/
CBTRIAL
/
SETUP
/
DATA.Z
/
VIEWFRM.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-14
|
1KB
|
31 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
#ifndef ViewFrmH
#define ViewFrmH
//----------------------------------------------------------------------------
#include <ExtCtrls.hpp>
#include <Dialogs.hpp>
#include <Forms.hpp>
#include <Controls.hpp>
#include <Graphics.hpp>
#include <Classes.hpp>
#include <SysUtils.hpp>
#include <Messages.hpp>
#include <Windows.hpp>
#include <System.hpp>
//----------------------------------------------------------------------------
class TViewFrm : public TForm
{
__published:
TImage *Image1;
public:
virtual __fastcall TViewFrm(TComponent *Owner);
};
//----------------------------------------------------------------------------
extern TViewFrm *ViewFrm;
//----------------------------------------------------------------------------
#endif