Changeset 1e121f4 for _old/app/src/lib/word.cc
- Timestamp:
- 10/26/10 10:57:54 (14 years ago)
- Branches:
- master
- Children:
- a6e708f
- Parents:
- f712e16
- git-author:
- Adam Kędziora <s301614@…> (10/26/10 10:57:54)
- git-committer:
- Adam Kędziora <s301614@…> (10/26/10 10:57:54)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_old/app/src/lib/word.cc
r57728c1 r1e121f4 2 2 #include "word.h" 3 3 #include "auttools.h" 4 //#include <istream.h> 4 5 #include <istream> 5 //--------------------------------------------------------------------------- 6 6 #include <algorithm> 7 7 using namespace std; 8 8 //--------------------------------------------------------------------------- 9 9 //--------------------------------------------------------------------------- 10 10 … … 124 124 //--------------------------------------------------------------------------- 125 125 void Words::sort() { 126 // sort(tab.begin(), tab.end(), Word::cmp_w); //NIE DZIALA 126 std::sort(tab.begin(), tab.end(), Word::cmp_w); 127 127 } 128 128 129 129 //--------------------------------------------------------------------------- 130 130 void Words::sort_rev() { 131 // sort(tab.begin(), tab.end(), cmp_w_rev_fun); // NIE DZIALA 131 std::sort(tab.begin(), tab.end(), cmp_w_rev_fun); 132 132 } 133 133
Note: See TracChangeset
for help on using the changeset viewer.