| 65 | }; |
| 66 | |
| 67 | std::string GetLayerStyleName(AELayerStyleType type) { |
| 68 | auto result = layerStyleNameMap.find(type); |
| 69 | if (result == layerStyleNameMap.end()) { |
| 70 | return "unknown"; |
| 71 | } |
| 72 | return result->second; |
| 73 | } |
| 74 | |
| 75 | static pag::LayerStyle* GetDropShadowStyle(const AEGP_StreamRefH& streamHandle) { |
| 76 | auto style = new pag::DropShadowStyle(); |
no test coverage detected