|
Lines 32-52
Link Here
|
| 32 |
class Vendor : public Ustring { |
32 |
class Vendor : public Ustring { |
| 33 |
|
33 |
|
| 34 |
private: |
34 |
private: |
| 35 |
|
35 |
|
| 36 |
static UstringHash _nameHash; |
36 |
static UstringHash _nameHash; |
| 37 |
|
37 |
|
| 38 |
bool _isSuSE; |
|
|
| 39 |
|
| 40 |
public: |
| 41 |
|
| 42 |
explicit Vendor( const std::string & n = "" ); |
| 43 |
|
| 44 |
public: |
38 |
public: |
| 45 |
|
39 |
|
| 46 |
/** |
40 |
explicit Vendor( const std::string & n = "" ) |
| 47 |
* True if vendor is SuSE |
41 |
: Ustring( _nameHash, n ) |
| 48 |
**/ |
42 |
{} |
| 49 |
bool isSuSE() const { return _isSuSE; } |
|
|
| 50 |
}; |
43 |
}; |
| 51 |
|
44 |
|