1
This commit is contained in:
parent
ddfcba0027
commit
8ff8a9b2d3
@ -11,5 +11,20 @@ pub struct MetaClass {
|
||||
}
|
||||
|
||||
pub struct MetaMgr {
|
||||
meta_classes: Vec<Box<MetaClass>>
|
||||
}
|
||||
|
||||
impl MetaMgr {
|
||||
|
||||
pub fn register_meta_class(&mut self) {
|
||||
let a = MetaClass{
|
||||
file_name: String::from("hello"),
|
||||
idx: 1,
|
||||
prim_key: String::from("key"),
|
||||
raw_list: Vec::new(),
|
||||
id_hash: HashMap::new(),
|
||||
name_hash: HashMap::new()
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user