Represents the resolved physical location of an asset */
| 16 | Represents the resolved physical location of an asset |
| 17 | */ |
| 18 | class AssetLocation : public URL { |
| 19 | public: |
| 20 | AssetLocation(const StringBox& url, bool isLocal); |
| 21 | ~AssetLocation(); |
| 22 | |
| 23 | bool isLocal() const; |
| 24 | |
| 25 | bool operator==(const AssetLocation& other) const; |
| 26 | bool operator!=(const AssetLocation& other) const; |
| 27 | |
| 28 | private: |
| 29 | bool _isLocal; |
| 30 | }; |
| 31 | |
| 32 | } // namespace Valdi |
no outgoing calls
no test coverage detected