Browse Subversion Repository
Contents of /CopalPro/Stop.cpp
Parent Directory
| Revision Log
Revision 1 -
( show annotations)
( download)
( as text)
Thu Jul 28 09:05:52 2011 UTC
(12 years, 9 months ago)
by kaityo
File MIME type: text/x-c++src
File size: 674 byte(s)
First Commit
| 1 |
//--------------------------------------------------------------------------- |
| 2 |
#include <vcl.h> |
| 3 |
#pragma hdrstop |
| 4 |
|
| 5 |
#include "Stop.h" |
| 6 |
//--------------------------------------------------------------------------- |
| 7 |
#pragma package(smart_init) |
| 8 |
#pragma resource "*.dfm" |
| 9 |
TFStop *FStop; |
| 10 |
//--------------------------------------------------------------------------- |
| 11 |
__fastcall TFStop::TFStop(TComponent* Owner) |
| 12 |
: TForm(Owner) {} |
| 13 |
//--------------------------------------------------------------------------- |
| 14 |
void __fastcall TFStop::Button1Click(TObject *Sender) { |
| 15 |
ShowMessage("Hey"); |
| 16 |
} |
| 17 |
//--------------------------------------------------------------------------- |
|