Select Git revision
semi_coherent_twoglitch_search_using_MCMC.py
Forked from
Gregory Ashton / PyFstat
Source project has a limited visibility.
-
Gregory Ashton authoredGregory Ashton authored
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_*/