fsfw/src/fsfw/filesystem/FileSystemArgsIF.h
Robin Mueller 2e4cdb7366
All checks were successful
fsfw/fsfw/pipeline/pr-development This commit looks good
additional filesystem abstractions
2022-09-05 17:42:56 +02:00

14 lines
407 B
C++

#ifndef FSFW_SRC_FSFW_MEMORY_FILESYSTEMARGS_H_
#define FSFW_SRC_FSFW_MEMORY_FILESYSTEMARGS_H_
/**
* Empty base interface which can be implemented by to pass arguments via the HasFileSystemIF.
* Users can then dynamic_cast the base pointer to the require child pointer.
*/
class FileSystemArgsIF {
public:
virtual ~FileSystemArgsIF() = default;
};
#endif /* FSFW_SRC_FSFW_MEMORY_FILESYSTEMARGS_H_ */