Files
geant4/source/analysis/include/tools/zfunc
T
2016-06-09 17:01:34 +02:00

25 lines
592 B
Plaintext

// Copyright (C) 2010, Guy Barrand. All rights reserved.
// See the file tools.license for terms.
#ifndef tools_zfunc
#define tools_zfunc
#include <ostream>
namespace tools {
typedef bool (*unzip_func)(std::ostream&,
unsigned int,const char*,
unsigned int,char*,
unsigned int&);
typedef bool (*zip_func)(std::ostream&,
unsigned int,
unsigned int,const char*,
unsigned int,char*,
unsigned int&);
}
#endif