Skip to content
Snippets Groups Projects
Select Git revision
  • aca23d274fd0f7bda39161a4dff04e2f55a0437a
  • master default protected
  • add-clFFT_GetSize
  • add-dylib-target
  • counting-mallocs
  • remove-CPU-constraint
  • Add-PKGBUILD
  • HSA
  • clmathfft
  • longer_dft_support
  • current_fgrp_apps
  • current_brp_apps
12 results

OpenCL.lib

Blame
  • Forked from einsteinathome / libclfft
    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_*/