We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f92197e commit 9e9cdc1Copy full SHA for 9e9cdc1
src/metadata.cpp
@@ -1,6 +1,12 @@
1
2
#include "metadata.h"
3
4
+Metadata::Metadata() :
5
+ pos(0), len(0), timestamp(0)
6
+{
7
+
8
+}
9
10
Metadata::Metadata(qint64 pos, qint64 len, qint64 timestamp) :
11
pos(pos), len(len), timestamp(timestamp)
12
{
src/metadata.h
@@ -6,6 +6,7 @@
class Metadata
public:
+ Metadata();
Metadata(qint64 pos, qint64 len, qint64 timestamp);
qint64 pos = 0;
qint64 len = 0;
0 commit comments