Changeset 2f8d6d8 for app/src/lib
- Timestamp:
- 10/14/09 21:27:05 (15 years ago)
- Branches:
- master
- Children:
- a26cf42
- Parents:
- 25b4022
- git-author:
- to <to@…> (10/14/09 21:27:05)
- git-committer:
- to <to@…> (10/14/09 21:27:05)
- Location:
- app/src/lib
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/lib/symtab.cc
r25ae32e r2f8d6d8 2 2 #include <values.h> 3 3 #include <stdio.h> 4 #include < alloc.h>4 #include <malloc.h> 5 5 #include <stdlib.h> 6 6 //--------------------------------------------------------------------------- -
app/src/lib/tft.h
r25ae32e r2f8d6d8 3 3 //--------------------------------------------------------------------------- 4 4 #include <stddef.h> 5 #include <iostream .h>5 #include <iostream> 6 6 #include <typeinfo> 7 7 #include <string.h> … … 11 11 //#include "top.h" 12 12 #include "ttrans.h" 13 14 using namespace std; 13 15 //--------------------------------------------------------------------------- 14 16 -
app/src/lib/tfti.h
r25ae32e r2f8d6d8 2 2 #define TFTiH 3 3 //--------------------------------------------------------------------------- 4 #include <fstream .h>4 #include <fstream> 5 5 #include <math.h> 6 #include <iomanip .h>6 #include <iomanip> 7 7 //#include <typeinfo.h> 8 8 9 9 #include "tft.h" 10 10 //--------------------------------------------------------------------------- 11 12 13 using namespace std; 14 11 15 12 16 template<class I, class Ipass, class O, class Opass> -
app/src/lib/ttrans.h
r25ae32e r2f8d6d8 2 2 #define _TTransi_h 3 3 //--------------------------------------------------------------------------- 4 #include <iostream.h> 5 //--------------------------------------------------------------------------- 4 #include <iostream> 5 //--------------------------------------------------------------------------- 6 7 8 using namespace std; 6 9 7 10 //! The template for a transition with input and output symbols stored internally. -
app/src/lib/word.cc
r6ac84d8 r2f8d6d8 2 2 #include "word.h" 3 3 #include "auttools.h" 4 #include <istream.h> 5 //--------------------------------------------------------------------------- 4 #include <istream> 5 //--------------------------------------------------------------------------- 6 7 using namespace std; 8 6 9 //--------------------------------------------------------------------------- 7 10 … … 121 124 //--------------------------------------------------------------------------- 122 125 void Words::sort() { 123 std::sort(tab.begin(), tab.end(), Word::cmp_w); 126 // sort(tab.begin(), tab.end(), Word::cmp_w); //NIE DZIALA 124 127 } 125 128 126 129 //--------------------------------------------------------------------------- 127 130 void Words::sort_rev() { 128 std::sort(tab.begin(), tab.end(), cmp_w_rev_fun); 131 // sort(tab.begin(), tab.end(), cmp_w_rev_fun); // NIE DZIALA 129 132 } 130 133 -
app/src/lib/word.h
r6ac84d8 r2f8d6d8 6 6 //#include "erro.h" 7 7 #include "const.h" 8 #include <iostream.h> 8 #include <iostream> 9 10 #include <string.h> 9 11 10 12 #include <vector>
Note: See TracChangeset
for help on using the changeset viewer.