23#ifndef STORAGE_SQUASHFS_H
24#define STORAGE_SQUASHFS_H
27#include "storage/Filesystems/BlkFilesystem.h"
39 class Squashfs :
public BlkFilesystem
51 static Squashfs* load(
Devicegraph* devicegraph,
const xmlNode* node);
58 const Impl& get_impl()
const;
60 virtual Squashfs* clone()
const override;
61 virtual std::unique_ptr<Device> clone_v2()
const override;
64 ST_NO_SWIG Squashfs(std::unique_ptr<Device::Impl>&& impl);
An abstract base class for storage devices.
Definition Device.h:82
The main container of the libstorage-ng.
Definition Devicegraph.h:170
Class for Squashfs filesystem.
Definition Squashfs.h:40
static Squashfs * create(Devicegraph *devicegraph)
Create a device of type Squashfs.
The storage namespace.
Definition Actiongraph.h:40
Squashfs * to_squashfs(Device *device)
Converts pointer to Device to pointer to Squashfs.
bool is_squashfs(const Device *device)
Checks whether device points to a Squashfs.