Changeset 607 for trunk/libffado/src/genericavc/avc_vendormodel.h
- Timestamp:
- 08/31/07 01:56:53 (16 years ago)
- Files:
-
- trunk/libffado/src/genericavc/avc_vendormodel.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/genericavc/avc_vendormodel.h
r599 r607 35 35 VendorModelEntry(const VendorModelEntry& rhs); 36 36 VendorModelEntry& operator = (const VendorModelEntry& rhs); 37 bool operator == (const VendorModelEntry& rhs) const; 37 38 virtual ~VendorModelEntry(); 38 39 … … 56 57 std::vector<std::string>::const_iterator& b, 57 58 std::vector<std::string>::const_iterator& e ); 58 VendorModelEntry* find( unsigned int vendor_id, unsigned model_id ); 59 VendorModelEntry find( unsigned int vendor_id, unsigned model_id ); 60 bool isPresent( unsigned int vendor_id, unsigned model_id ); 61 static bool isValid( const VendorModelEntry& vme ); 59 62 60 63 const VendorModelEntryVector& getVendorModelEntries() const; … … 62 65 std::string m_filename; 63 66 VendorModelEntryVector m_vendorModelEntries; 67 64 68 }; 65 69