1
0
Fork 0
apt/ftparchive/sources.h
Daniel Baumann 6810ba718b
Adding upstream version 3.0.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-20 21:10:43 +02:00

24 lines
399 B
C++

#ifndef SOURCES_H
#define SOURCES_H
#include <apt-pkg/tagfile.h>
#include <string>
class DscExtract
{
public:
std::string Data;
pkgTagSection Section;
unsigned long long Length;
bool IsClearSigned;
bool TakeDsc(const void *Data, unsigned long long Size);
bool Read(std::string FileName);
DscExtract() : Length(0), IsClearSigned(false) {};
~DscExtract() {};
};
#endif