Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.2 KiB

  1. // cciCard.h -- interface for the CCard class
  2. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  3. // 1999. This computer program includes Confidential, Proprietary
  4. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  5. // use, disclosure, and/or reproduction is prohibited unless authorized
  6. // in writing. All Rights Reserved.
  7. #if !defined(SLBCCI_CARD_H)
  8. #define SLBCCI_CARD_H
  9. #include <string>
  10. #include <slbRCPtr.h>
  11. #include "ACard.h"
  12. namespace cci
  13. {
  14. class CCard
  15. : public slbRefCnt::RCPtr<CAbstractCard,
  16. slbRefCnt::DeepComparator<CAbstractCard> >
  17. {
  18. public:
  19. // Types
  20. // C'tors/D'tors
  21. CCard(ValueType *p = 0);
  22. explicit
  23. CCard(std::string const &rstrReaderName);
  24. // Operators
  25. // Operations
  26. // Access
  27. // Predicates
  28. protected:
  29. // Types
  30. // C'tors/D'tors
  31. // Operators
  32. // Operations
  33. // Access
  34. // Predicates
  35. // Variables
  36. private:
  37. // Types
  38. typedef slbRefCnt::RCPtr<ValueType,
  39. slbRefCnt::DeepComparator<ValueType> > SuperClass;
  40. // C'tors/D'tors
  41. // Operators
  42. // Operations
  43. // Access
  44. // Predicates
  45. // Variables
  46. };
  47. } // namespace cci
  48. #endif // SLBCCI_CARD_H