| 61 | |
| 62 | |
| 63 | class SFileRating |
| 64 | { |
| 65 | public: |
| 66 | wxString UserName; |
| 67 | wxString FileName; |
| 68 | sint16 Rating; |
| 69 | wxString Comment; |
| 70 | public: |
| 71 | SFileRating(const wxString &u, const wxString &f, sint16 r, const wxString &c); |
| 72 | SFileRating(const CUpDownClient &client); |
| 73 | }; |
| 74 | |
| 75 | typedef std::list<SFileRating> FileRatingList; |
| 76 |
no outgoing calls
no test coverage detected