Imported Upstream version 3.2.2
[debian/gnuradio] / gr-trellis / src / lib / quicksort_index.h
index 8f87023541d2f7f1669cd0f021afaff1eed228ac..da453972e457f284140498034acc261f7a4706e8 100644 (file)
@@ -1,12 +1,12 @@
 /* -*- c++ -*- */
 /*
- * Copyright 2004 Free Software Foundation, Inc.
+ * Copyright 2004,2007 Free Software Foundation, Inc.
  * 
  * This file is part of GNU Radio
  * 
  * GNU Radio is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
+ * the Free Software Foundation; either version 3, or (at your option)
  * any later version.
  * 
  * GNU Radio is distributed in the hope that it will be useful,
 
 #include <vector>
 
-template <class T> void SWAP (T & a, T & b);
-template <class T> void quicksort_index(std::vector<T> & p, std::vector<int> & index, int left, int right);
-void quicksort_index1(std::vector<int> & p, std::vector<int> & index, int left, int right);
+template <class T>
+void SWAP (T & a, T & b);
+
+template <class T>
+void quicksort_index (std::vector<T> & p, std::vector<int> & index, int left, int right);
 
 #endif