mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 07:30:04 +00:00 
			
		
		
		
	Draw 4-bit encoded radial data
This commit is contained in:
		
							parent
							
								
									41b491314b
								
							
						
					
					
						commit
						8d1be0f54a
					
				
					 7 changed files with 158 additions and 25 deletions
				
			
		
							
								
								
									
										37
									
								
								wxdata/source/scwx/wsr88d/rpg/generic_radial_data_packet.cpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								wxdata/source/scwx/wsr88d/rpg/generic_radial_data_packet.cpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,37 @@ | |||
| #include <scwx/wsr88d/rpg/generic_radial_data_packet.hpp> | ||||
| 
 | ||||
| #include <string> | ||||
| 
 | ||||
| #include <boost/log/trivial.hpp> | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace wsr88d | ||||
| { | ||||
| namespace rpg | ||||
| { | ||||
| 
 | ||||
| static const std::string logPrefix_ = | ||||
|    "[scwx::wsr88d::rpg::generic_radial_data_packet] "; | ||||
| 
 | ||||
| class GenericRadialDataPacketImpl | ||||
| { | ||||
| public: | ||||
|    explicit GenericRadialDataPacketImpl() = default; | ||||
|    ~GenericRadialDataPacketImpl()         = default; | ||||
| }; | ||||
| 
 | ||||
| GenericRadialDataPacket::GenericRadialDataPacket() : | ||||
|     p(std::make_unique<GenericRadialDataPacketImpl>()) | ||||
| { | ||||
| } | ||||
| GenericRadialDataPacket::~GenericRadialDataPacket() = default; | ||||
| 
 | ||||
| GenericRadialDataPacket::GenericRadialDataPacket( | ||||
|    GenericRadialDataPacket&&) noexcept                    = default; | ||||
| GenericRadialDataPacket& GenericRadialDataPacket::operator=( | ||||
|    GenericRadialDataPacket&&) noexcept = default; | ||||
| 
 | ||||
| } // namespace rpg
 | ||||
| } // namespace wsr88d
 | ||||
| } // namespace scwx
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat