@ProjectCipher.h 592 B

123456789101112131415161718
  1. /******************************************************************************/
  2. class ProjectCipher
  3. {
  4. Cipher1 cipher1;
  5. Cipher2 cipher2;
  6. Cipher3 cipher3;
  7. Cipher *cipher_ptr;
  8. Cipher* operator()( );
  9. ProjectCipher& clear( );
  10. ProjectCipher& set (Project &proj);
  11. public:
  12. ProjectCipher();
  13. };
  14. /******************************************************************************/
  15. /******************************************************************************/
  16. /******************************************************************************/