.[ ČeskéHry.cz ].

Laboratoř ČeskýchHer.cz - PasteBin

Vložit nový kód

ČeskéHry.cz - KOMUNITA HERNÍCH VÝVOJÁŘŮ

  1. sdggsgwergh
    5 hod
  2. buhbu
    6 hod
  3. yy
    7 hod
  4. xgxvfsd
    7 hod
  5. hhhh
    8 hod
  6. ffff
    8 hod
  7. yujjjhj
    9 hod
  8. vv
    10 hod
  9. ndtyjdrhrthr
    10 hod
  10. vdscascasce
    10 hod
Link: http://nopaste.ceske-hry.cz/subdom/nopaste459
Zaslal: ...
Jazyk: C++
Vloženo: 10.8.2007, 14:21
Stáhnout jako soubor
  1. class TextureRes
  2. {
  3. public:
  4. TextureRes();
  5. };
  6.  
  7. // ======================================================================================
  8.  
  9. TextureRes::TextureRes(void)
  10. {
  11. cout << "Konstruktor." << endl;
  12. }
  13.  
  14. // ======================================================================================
  15.  
  16. int main()
  17. {
  18. TextureRes textura, *ptextura;
  19.  
  20. ptextura = new TextureRes;
  21. delete ptextura;
  22. getchar();
  23. return 0;
  24. }
  25.