Home | History | Annotate | Download | only in localize

Lines Matching full:file

57     TransUnit* EditTransUnit(const string& file, const string& id);
59 // exports this file as a n XMLNode, you own this object
69 struct File {
70 int Compare(const File& that) const;
72 inline bool operator<(const File& that) const { return Compare(that) < 0; }
73 inline bool operator<=(const File& that) const { return Compare(that) <= 0; }
74 inline bool operator==(const File& that) const { return Compare(that) == 0; }
75 inline bool operator!=(const File& that) const { return Compare(that) != 0; }
76 inline bool operator>=(const File& that) const { return Compare(that) >= 0; }
77 inline bool operator>(const File& that) const { return Compare(that) > 0; }
93 vector<File> m_files;