mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 01:20:06 +00:00 
			
		
		
		
	Refactoring AWS level 2 data provider, pushing up common functions
This commit is contained in:
		
							parent
							
								
									394aba2d83
								
							
						
					
					
						commit
						c5c54fbfa2
					
				
					 13 changed files with 512 additions and 439 deletions
				
			
		
							
								
								
									
										26
									
								
								wxdata/source/scwx/provider/nexrad_data_provider.cpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								wxdata/source/scwx/provider/nexrad_data_provider.cpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,26 @@ | |||
| #include <scwx/provider/nexrad_data_provider.hpp> | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace provider | ||||
| { | ||||
| 
 | ||||
| static const std::string logPrefix_ = "scwx::provider::nexrad_data_provider"; | ||||
| 
 | ||||
| class NexradDataProvider::Impl | ||||
| { | ||||
| public: | ||||
|    explicit Impl() {} | ||||
| 
 | ||||
|    ~Impl() {} | ||||
| }; | ||||
| 
 | ||||
| NexradDataProvider::NexradDataProvider() : p(std::make_unique<Impl>()) {} | ||||
| NexradDataProvider::~NexradDataProvider() = default; | ||||
| 
 | ||||
| NexradDataProvider::NexradDataProvider(NexradDataProvider&&) noexcept = default; | ||||
| NexradDataProvider& | ||||
| NexradDataProvider::operator=(NexradDataProvider&&) noexcept = default; | ||||
| 
 | ||||
| } // namespace provider
 | ||||
| } // namespace scwx
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat