summaryrefslogtreecommitdiffstats
path: root/lzip_index.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lzip_index.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lzip_index.h b/lzip_index.h
index 9c8bd2b..6cd9233 100644
--- a/lzip_index.h
+++ b/lzip_index.h
@@ -64,6 +64,14 @@ public:
int retval() const { return retval_; }
unsigned dictionary_size() const { return dictionary_size_; }
+ bool multi_empty() const // multimember file with empty member(s)
+ {
+ if( member_vector.size() > 1 )
+ for( unsigned long i = 0; i < member_vector.size(); ++i )
+ if( member_vector[i].dblock.size() == 0 ) return true;
+ return false;
+ }
+
bool operator==( const Lzip_index & li ) const
{
if( retval_ || li.retval_ || insize != li.insize ||