00001 /* hash-dump.cc 00002 */ 00003 #include "osl/record/csaRecord.h" 00004 #include "osl/hash/hashKey.h" 00005 #include <iostream> 00006 00007 using namespace osl; 00008 int main(int argc, char **argv) 00009 { 00010 std::string filename(argv[1]); 00011 NumEffectState state=CsaFile(filename).getInitialState(); 00012 HashKey key(state); 00013 key.dumpContents(std::cerr); 00014 std::cerr << std::endl; 00015 } 00016