GlobeEngine
LoadingJob.h
Go to the documentation of this file.
1 
9 #ifndef GlobeEngine_LoadingJob_h
10 #define GlobeEngine_LoadingJob_h
11 
12 #include "OpenGL_Includes.h"
13 #include "CullableSpatialKey.h"
14 
15 #include <iostream>
16 #include <string>
17 #include <QRunnable>
18 
19 namespace geSpatial {
20 
21  class LoadingJob : public QRunnable
22  {
23  public:
24  virtual void run() {};
25  std::shared_ptr<geSpatial::CullableSpatialKey> key;
26  std::string fileTypeExtension;
27  std::string url;
28  };
29 }
30 #endif
Definition: LoadingJob.h:21
std::shared_ptr< geSpatial::CullableSpatialKey > key
Definition: LoadingJob.h:24
virtual void run()
Definition: LoadingJob.h:24
std::string fileTypeExtension
Definition: LoadingJob.h:26
std::string url
Definition: LoadingJob.h:27
Definition: Cache.h:17