Train status

Committer:
takashikojo
Date:
Sun Nov 22 08:47:56 2015 +0000
Revision:
6:d4d781f31f70
Parent:
4:acfd6fbf9f9e
Serial Terminal message macro

Who changed what in which revision?

UserRevisionLine numberNew contents of line
takashikojo 4:acfd6fbf9f9e 1 #ifndef MATCHLINE_H
takashikojo 4:acfd6fbf9f9e 2 #define MATCHLINE_H
takashikojo 4:acfd6fbf9f9e 3
takashikojo 4:acfd6fbf9f9e 4 #include <string>
takashikojo 4:acfd6fbf9f9e 5 #include <vector>
takashikojo 4:acfd6fbf9f9e 6
takashikojo 4:acfd6fbf9f9e 7 class matchLine {
takashikojo 4:acfd6fbf9f9e 8 public:
takashikojo 4:acfd6fbf9f9e 9 matchLine ();
takashikojo 4:acfd6fbf9f9e 10 ~matchLine ();
takashikojo 4:acfd6fbf9f9e 11 bool getList(string filename) ;
takashikojo 4:acfd6fbf9f9e 12 bool find(string line) ;
takashikojo 4:acfd6fbf9f9e 13 private:
takashikojo 4:acfd6fbf9f9e 14 std::vector<string> list ;
takashikojo 4:acfd6fbf9f9e 15 } ;
takashikojo 4:acfd6fbf9f9e 16
takashikojo 4:acfd6fbf9f9e 17 #endif