All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
hash-dump.cc
Go to the documentation of this file.
1 /* hash-dump.cc
2  */
3 #include "osl/record/csaRecord.h"
4 #include "osl/hash/hashKey.h"
5 #include <iostream>
6 
7 using namespace osl;
8 int main(int argc, char **argv)
9 {
10  std::string filename(argv[1]);
11  NumEffectState state=CsaFile(filename).getInitialState();
12  HashKey key(state);
13  key.dumpContents(std::cerr);
14  std::cerr << std::endl;
15 }
16