home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / gamtlk11.zip / source.zip / BJCPP / DECK.CPP < prev    next >
C/C++ Source or Header  |  1999-06-11  |  357b  |  25 lines

  1. //
  2. // File: Deck.CPP
  3. //
  4. // Handles the deck, consisting of the card bitmap module.
  5. //
  6. #include "Blackjack.H"
  7. #include "Blackjack.HPP"
  8.  
  9. //
  10. // DECK::DECK(const char *Name)
  11. //
  12. // Creates a deck from the DLL
  13. //
  14. DECK::DECK(const char *Name) : IDynamicLinkLibrary(Name)
  15. {
  16. }
  17.  
  18. //
  19. // DECK::~DECK()
  20. //
  21. // Closes a deck DLL
  22. //
  23. DECK::~DECK()
  24. {
  25. }