fsfw/src/fsfw/filesystem/FileSystemArgsIF.h

14 lines
407 B
C
Raw Normal View History

2021-11-10 18:49:29 +01:00
#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 {
2022-02-02 10:29:30 +01:00
public:
2022-09-05 17:42:56 +02:00
virtual ~FileSystemArgsIF() = default;
2021-11-10 18:49:29 +01:00
};
#endif /* FSFW_SRC_FSFW_MEMORY_FILESYSTEMARGS_H_ */