Skip to content
Snippets Groups Projects
Select Git revision
  • f415451cf8fd125a56e9dc9c7699dbc44b93fc43
  • master default
2 results

pykat_output.kat

Blame
  • Forked from finesse / pykat
    Source project has a limited visibility.
    Resource.h 390 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 vector<unsigned char> m_Data;
    };
    
    #endif /*RESOURCE_H_*/