mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:32:44 +00:00 
			
		
		
		
	LibCore: Convert CFile to ObjectPtr
This commit is contained in:
		
							parent
							
								
									31b38ed88f
								
							
						
					
					
						commit
						8d550c174e
					
				
					 30 changed files with 135 additions and 134 deletions
				
			
		|  | @ -13,13 +13,13 @@ int main(int argc, char** argv) | |||
|         return 0; | ||||
|     } | ||||
| 
 | ||||
|     CFile file(argv[1]); | ||||
|     if (!file.open(CIODevice::ReadOnly)) { | ||||
|         fprintf(stderr, "Error: Cannot open %s: %s\n", argv[1], file.error_string()); | ||||
|     auto file = CFile::construct(argv[1]); | ||||
|     if (!file->open(CIODevice::ReadOnly)) { | ||||
|         fprintf(stderr, "Error: Cannot open %s: %s\n", argv[1], file->error_string()); | ||||
|         return 1; | ||||
|     } | ||||
| 
 | ||||
|     auto file_contents = file.read_all(); | ||||
|     auto file_contents = file->read_all(); | ||||
|     auto json = JsonValue::from_string(file_contents); | ||||
| 
 | ||||
|     if (!json.is_object()) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling