Skip to content
Snippets Groups Projects
Select Git revision
  • d6ae23d5ce3c7b0e3a0573246609af723da5e556
  • master default protected
  • 72-improve-docs-for_optimal_setup
  • os-path-join
  • develop-GA
  • add-higher-spindown-components
  • v1.3
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

semi_coherent_search_using_MCMC.py

Blame
    • Gregory Ashton's avatar
      89f200ed
      Renames sftfilepath -> sftfilepattern · 89f200ed
      Gregory Ashton authored
      This renames the input sftfilepath to sftfilepattern and adds
      documentation on how that should be used, i.e. a colon separated list of
      wildstring or exact matches. In globbing for all matches, the colon
      split is added in. sftfilepath is still used by `Writer` since
      an exact path is known.
      89f200ed
      History
      Renames sftfilepath -> sftfilepattern
      Gregory Ashton authored
      This renames the input sftfilepath to sftfilepattern and adds
      documentation on how that should be used, i.e. a colon separated list of
      wildstring or exact matches. In globbing for all matches, the colon
      split is added in. sftfilepath is still used by `Writer` since
      an exact path is known.
    ResourceCompiler.h 616 B
    #ifndef RESOURCECOMPILER_H_
    #define RESOURCECOMPILER_H_
    
    #include <string>
    #include <map>
    #include <vector>
    #include <iostream>
    #include <fstream>
    #include <sstream>
    #include <iterator>
    
    using namespace std;
    
    
    class ResourceCompiler
    {
    public:
    	ResourceCompiler(const string inputFilename, const string outputFilename);
    	virtual ~ResourceCompiler();
    	
    	void compile();
    	
    private:
    	void parseInputFile();
    	void loadBinaryData();
    	
    	string m_ResourceSpecFile;
    	string m_ResourceCodeFile;
    	map<string, string> m_ResourceFileMap;
    	map<string, vector<unsigned char> > m_ResourceDataMap;
    };
    
    #endif /*RESOURCECOMPILER_H_*/