fsfw/src/fsfw/cfdp/tlv/StringLv.h
Robin Mueller 3e1fd15613
Some checks failed
fsfw/fsfw/pipeline/pr-development There was a failure building this commit
completed all indication parameters
2022-08-10 10:34:02 +02:00

20 lines
328 B
C++

#ifndef FSFW_CFDP_STRINGLV_H
#define FSFW_CFDP_STRINGLV_H
#include <string>
#include "Lv.h"
namespace cfdp {
class StringLv : public Lv {
public:
StringLv();
explicit StringLv(const std::string& fileName);
explicit StringLv(const char* filename, size_t len);
};
} // namespace cfdp
#endif // FSFW_CFDP_STRINGLV_H