1 / 6

Seminář C++

Seminář C++. 1. cvičení Úvod. Ing. Jan Mikulka. Organizace výuky. Vyučující – Ing. Jan Mikulka Kontakt – mikulka @ feec.vutbr.cz Konzultace – E422, úterý 13 00 - 16 00. Pokyny k užívání počítačového vybavení. Borland Builder 6.0 konzolové aplikace / jednoduché WindowsForm aplikace

chul
Download Presentation

Seminář C++

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Seminář C++ 1. cvičení Úvod Ing. Jan Mikulka

  2. Organizace výuky • Vyučující – Ing. Jan Mikulka • Kontakt – mikulka@feec.vutbr.cz • Konzultace – E422, úterý 1300 - 1600

  3. Pokyny k užívání počítačového vybavení • Borland Builder 6.0 • konzolové aplikace / jednoduché WindowsForm aplikace • celý program (třída) v odděleném *.h souboru linkovaném (#include) k vygenerovanému kódu aplikace

  4. První program • #pragma hdrstop • #include "Unit1.h" • #include "mojeExtFunkce.h" • //------------------------------------------------------------------ • #pragma package(smart_init) • #pragma resource "*.dfm" • TForm1 *Form1; • //------------------------------------------------------------------ • __fastcall TForm1::TForm1(TComponent* Owner): TForm(Owner) • {} • //------------------------------------------------------------------ • void __fastcall TForm1::fPokus(TObject *Sender) • {} • //------------------------------------------------------------------

  5. Vlastní hlavičkový soubor mojeExtFunkce.h • int mojeExtFunkce(void) • { • /* text vložené funkce*/ • }

  6. Konec

More Related