1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
crate::ix!();

/**
  | A parsed wpkh(P) descriptor.
  |
  */
pub struct WPKHDescriptor {
    base: DescriptorImpl,
}

impl From<Box<PubkeyProvider>> for WPKHDescriptor {

    fn from(prov: Box<PubkeyProvider>) -> Self {
    
        todo!();
        /*


            : DescriptorImpl(Vector(std::move(prov)), "wpkh")
        */
    }
}
    
impl WPKHDescriptor {
    
    pub fn make_scripts(&self, 
        keys: &Vec<crate::PubKey>,
        _1:   &[Script],
        out:  &mut FlatSigningProvider) -> Vec<Script> {
        
        todo!();
        /*
            CKeyID id = keys[0].GetID();
            out.pubkeys.emplace(id, keys[0]);
            return Vector(GetScriptForDestination(WitnessV0KeyHash(id)));
        */
    }
}

impl GetOutputType for WPKHDescriptor {

    fn get_output_type(&self) -> Option<OutputType> {
        
        todo!();
        /*
            return OutputType::BECH32;
        */
    }
}

impl IsSingleType for WPKHDescriptor {
    fn is_single_type(&self) -> bool {
        
        todo!();
        /*
            return true;
        */
    }
}