mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 01:10:04 +00:00 
			
		
		
		
	RPG clang-tidy cleanup
This commit is contained in:
		
							parent
							
								
									e49adafda9
								
							
						
					
					
						commit
						68a5baa5c4
					
				
					 6 changed files with 223 additions and 204 deletions
				
			
		|  | @ -2,29 +2,22 @@ | |||
| 
 | ||||
| #include <scwx/wsr88d/rpg/packet.hpp> | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace wsr88d | ||||
| { | ||||
| namespace rpg | ||||
| namespace scwx::wsr88d::rpg | ||||
| { | ||||
| 
 | ||||
| class PacketFactory | ||||
| { | ||||
| private: | ||||
| public: | ||||
|    explicit PacketFactory() = delete; | ||||
|    ~PacketFactory()         = delete; | ||||
| 
 | ||||
|    PacketFactory(const PacketFactory&) = delete; | ||||
|    PacketFactory(const PacketFactory&)            = delete; | ||||
|    PacketFactory& operator=(const PacketFactory&) = delete; | ||||
| 
 | ||||
|    PacketFactory(PacketFactory&&) noexcept = delete; | ||||
|    PacketFactory(PacketFactory&&) noexcept            = delete; | ||||
|    PacketFactory& operator=(PacketFactory&&) noexcept = delete; | ||||
| 
 | ||||
| public: | ||||
|    static std::shared_ptr<Packet> Create(std::istream& is); | ||||
| }; | ||||
| 
 | ||||
| } // namespace rpg
 | ||||
| } // namespace wsr88d
 | ||||
| } // namespace scwx
 | ||||
| } // namespace scwx::wsr88d::rpg
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat