Skip to content
Snippets Groups Projects
Select Git revision
  • f770b66c9b2aa8bd7498fc86813b0c9bb8dce986
  • master default protected
  • develop-GA
  • timeFstatmap
  • add-higher-spindown-components
  • develop-DK
  • adds-header-to-grid-search
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

generate_failures.py

Blame
  • Forked from Gregory Ashton / PyFstat
    Source project has a limited visibility.
    Resource.h 401 B
    #ifndef RESOURCE_H_
    #define RESOURCE_H_
    
    #include <string>
    #include <vector>
    
    using namespace std;
    
    class Resource
    {
    public:
    	Resource(const string identifier, const vector<unsigned char>& data);
    	virtual ~Resource();
    	
    	string identifier() const;
    	const vector<unsigned char> * data() const;
    	
    private:
    	string m_Identifier;
    	const auto_ptr<vector<unsigned char> > m_Data;
    };
    
    #endif /*RESOURCE_H_*/