TQFactory.h 464 B

123456789101112131415161718192021222324
  1. //
  2. // TQFactory.h
  3. // LibDriveRating-CXX
  4. //
  5. // Created by Melo Yao on 6/10/14.
  6. // Copyright (c) 2014 AutoNavi. All rights reserved.
  7. //
  8. #ifndef __LibDriveRating_CXX__TQFactory__
  9. #define __LibDriveRating_CXX__TQFactory__
  10. #include "TQInterface.h"
  11. namespace tq {
  12. class TQFactory
  13. {
  14. public:
  15. static IQueue* CreateDefaultQueue();
  16. static void ReleaseQueue(IQueue* queue);
  17. };
  18. }
  19. #endif /* defined(__LibDriveRating_CXX__TQFactory__) */