1use crate::{object, objective_c_runtime::{ 2 macros::{interface_impl}, 3 traits::PNSObject, 4}}; 5 6object! { 7 unsafe pub struct NSFileWrapper; 8} 9 10#[interface_impl(NSObject)] 11impl NSFileWrapper {}