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.

32 lines
1.1 KiB

  1. #ifndef __gluflistsorter_h_
  2. #define __gluflistsorter_h_
  3. /**************************************************************************
  4. * *
  5. * Copyright (C) 1992, Silicon Graphics, Inc. *
  6. * *
  7. * These coded instructions, statements, and computer programs contain *
  8. * unpublished proprietary information of Silicon Graphics, Inc., and *
  9. * are protected by Federal copyright law. They may not be disclosed *
  10. * to third parties or copied or duplicated in any form, in whole or *
  11. * in part, without the prior written consent of Silicon Graphics, Inc. *
  12. * *
  13. **************************************************************************/
  14. /*
  15. * flistsorter.h - $Revision: 1.1 $
  16. */
  17. #include "sorter.h"
  18. #include "types.h"
  19. class FlistSorter : public Sorter {
  20. public:
  21. FlistSorter(void);
  22. void qsort( REAL *a, int n );
  23. protected:
  24. virtual int qscmp( char *, char * );
  25. virtual void qsexc( char *i, char *j ); // i<-j, j<-i
  26. virtual void qstexc( char *i, char *j, char *k ); // i<-k, k<-j, j<-i
  27. };
  28. #endif /* __gluflistsorter_h_ */