comparison Sources/Plugin.cpp @ 10:fdb3093ab802

typo
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Jun 2023 21:30:17 +0200
parents 3f1cf4a8e31f
children ec47d2182ac6
comparison
equal deleted inserted replaced
9:ad4d62a9422d 10:fdb3093ab802
35 void ReadStaticAsset(std::string& target, 35 void ReadStaticAsset(std::string& target,
36 const std::string& path); 36 const std::string& path);
37 37
38 38
39 /** 39 /**
40 * As the VolView static assets are gzipped by the "EmbedResources.py" 40 * As the VolView static assets are gzipped by the
41 * script, we use a cache to maintain the uncompressed assets in order 41 * "EmbedStaticAssets.py" script, we use a cache to maintain the
42 * to avoid multiple gzip decodings. 42 * uncompressed assets in order to avoid multiple gzip decodings.
43 **/ 43 **/
44 class ResourcesCache : public boost::noncopyable 44 class ResourcesCache : public boost::noncopyable
45 { 45 {
46 private: 46 private:
47 typedef std::map<std::string, std::string*> Content; 47 typedef std::map<std::string, std::string*> Content;