Files
geant4/source/analysis/g4tools/include/tools/press_func
T
2016-06-10 14:11:04 +02:00

18 lines
424 B
Plaintext

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