forked from organicmaps/organicmaps
[coding] Comment out some unused staff. May be useful in future.
This commit is contained in:
parent
caa75e4cda
commit
834b5346b3
13 changed files with 41 additions and 12 deletions
|
@ -1,5 +1,6 @@
|
|||
#include "blob_indexer.hpp"
|
||||
|
||||
/*
|
||||
#include "../coding/writer.hpp"
|
||||
#include "../coding/write_to_sink.hpp"
|
||||
|
||||
|
@ -70,3 +71,4 @@ BlobIndexer::~BlobIndexer()
|
|||
WriteToSink(m_writer, m_blobChunkAndOffset[i]);
|
||||
WriteToSink(m_writer, static_cast<uint32_t>(m_blobChunkAndOffset.size()));
|
||||
}
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
/*
|
||||
#include "../base/base.hpp"
|
||||
|
||||
#include "../std/function.hpp"
|
||||
|
@ -41,3 +43,4 @@ private:
|
|||
uint32_t m_maxBlobSize;
|
||||
uint32_t m_largeBlobCount;
|
||||
};
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#include "blob_storage.hpp"
|
||||
|
||||
/*
|
||||
#include "reader.hpp"
|
||||
|
||||
// File Format:
|
||||
|
@ -94,3 +96,4 @@ void BlobStorage::GetBlob(uint32_t i, string & blob) const
|
|||
else
|
||||
blob.assign(data.begin() + blobOffset, data.end());
|
||||
}
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
/*
|
||||
#include "dd_vector.hpp"
|
||||
#include "polymorph_reader.hpp"
|
||||
#include "../std/function.hpp"
|
||||
|
@ -42,3 +44,4 @@ private:
|
|||
DDVector<uint32_t, PolymorphReader> m_blobInfo;
|
||||
DDVector<uint32_t, PolymorphReader> m_chunkOffset;
|
||||
};
|
||||
*/
|
||||
|
|
|
@ -27,15 +27,15 @@ SOURCES += \
|
|||
mmap_reader.cpp \
|
||||
reader_streambuf.cpp \
|
||||
reader_writer_ops.cpp \
|
||||
blob_indexer.cpp \
|
||||
blob_storage.cpp \
|
||||
# blob_indexer.cpp \
|
||||
# blob_storage.cpp \
|
||||
uri.cpp \
|
||||
zip_creator.cpp \
|
||||
file_name_utils.cpp \
|
||||
varint_vector.cpp \
|
||||
# varint_vector.cpp \
|
||||
arithmetic_codec.cpp \
|
||||
compressed_bit_vector.cpp \
|
||||
compressed_varnum_vector.cpp \
|
||||
# compressed_varnum_vector.cpp \
|
||||
bit_streams.cpp \
|
||||
|
||||
HEADERS += \
|
||||
|
@ -91,16 +91,16 @@ HEADERS += \
|
|||
reader_streambuf.hpp \
|
||||
reader_writer_ops.hpp \
|
||||
reader_wrapper.hpp \
|
||||
blob_indexer.hpp \
|
||||
blob_storage.hpp \
|
||||
# blob_indexer.hpp \
|
||||
# blob_storage.hpp \
|
||||
uri.hpp \
|
||||
zip_creator.hpp \
|
||||
file_name_utils.hpp \
|
||||
constants.hpp \
|
||||
matrix_traversal.hpp \
|
||||
varint_vector.hpp \
|
||||
# varint_vector.hpp \
|
||||
arithmetic_codec.hpp \
|
||||
compressed_bit_vector.hpp \
|
||||
compressed_varnum_vector.hpp \
|
||||
# compressed_varnum_vector.hpp \
|
||||
varint_misc.hpp \
|
||||
bit_streams.hpp \
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#include "../../testing/testing.hpp"
|
||||
|
||||
/*
|
||||
#include "../blob_storage.hpp"
|
||||
#include "../blob_indexer.hpp"
|
||||
|
||||
|
@ -106,3 +108,4 @@ UNIT_TEST(BlobIndexerSerialTest)
|
|||
TEST_EQUAL(GetBlob(bs, 6), "World", ());
|
||||
TEST_EQUAL(GetBlob(bs, 7), "!", ());
|
||||
}
|
||||
*/
|
||||
|
|
|
@ -17,11 +17,11 @@ SOURCES += ../../testing/testingmain.cpp \
|
|||
base64_test.cpp \
|
||||
bit_shift_test.cpp \
|
||||
bit_streams_test.cpp \
|
||||
blob_storage_test.cpp \
|
||||
# blob_storage_test.cpp \
|
||||
bzip2_test.cpp \
|
||||
coder_util_test.cpp \
|
||||
compressed_bit_vector_test.cpp \
|
||||
compressed_varnum_vector_test.cpp \
|
||||
# compressed_varnum_vector_test.cpp \
|
||||
dd_vector_test.cpp \
|
||||
diff_test.cpp \
|
||||
endianness_test.cpp \
|
||||
|
@ -47,7 +47,7 @@ SOURCES += ../../testing/testingmain.cpp \
|
|||
var_record_reader_test.cpp \
|
||||
var_serial_vector_test.cpp \
|
||||
varint_test.cpp \
|
||||
varint_vector_test.cpp \
|
||||
# varint_vector_test.cpp \
|
||||
writer_test.cpp \
|
||||
zip_creator_test.cpp \
|
||||
zip_reader_test.cpp \
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#include "../../testing/testing.hpp"
|
||||
|
||||
#include "../compressed_varnum_vector.hpp"
|
||||
|
||||
/*
|
||||
#include "../reader.hpp"
|
||||
#include "../writer.hpp"
|
||||
|
||||
|
@ -76,3 +78,4 @@ UNIT_TEST(CompressedVarnumVector)
|
|||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include "../../testing/testing.hpp"
|
||||
|
||||
/*
|
||||
#include "../varint_vector.hpp"
|
||||
#include "../writer.hpp"
|
||||
#include "../reader.hpp"
|
||||
|
@ -164,3 +165,4 @@ UNIT_TEST(VarintVector_Use)
|
|||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#include "compressed_varnum_vector.hpp"
|
||||
|
||||
/*
|
||||
#include "arithmetic_codec.hpp"
|
||||
#include "bit_streams.hpp"
|
||||
#include "compressed_varnum_vector.hpp"
|
||||
#include "reader.hpp"
|
||||
#include "writer.hpp"
|
||||
#include "varint_misc.hpp"
|
||||
|
@ -215,3 +217,4 @@ uint64_t CompressedVarnumVectorReader::Read()
|
|||
--m_decodeCtx->m_numsLeftInChunk;
|
||||
return num;
|
||||
}
|
||||
*/
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
/*
|
||||
#include "../std/function.hpp"
|
||||
#include "../std/stdint.hpp"
|
||||
#include "../std/vector.hpp"
|
||||
|
@ -56,3 +57,4 @@ private:
|
|||
struct DecodeContext;
|
||||
DecodeContext * m_decodeCtx;
|
||||
};
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#include "varint_vector.hpp"
|
||||
|
||||
/*
|
||||
#include "writer.hpp"
|
||||
#include "reader.hpp"
|
||||
|
||||
|
@ -205,3 +207,4 @@ void Vector::Read(uint32_t & serialPos, uint64_t & num)
|
|||
}
|
||||
|
||||
}
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
/*
|
||||
#include "../base/base.hpp"
|
||||
|
||||
#include "../std/vector.hpp"
|
||||
|
@ -82,3 +83,4 @@ private:
|
|||
};
|
||||
|
||||
}
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue