Add get_dimensions() to MonitorID
This commit is contained in:
parent
dbaef704ad
commit
abceca1121
3 changed files with 27 additions and 2 deletions
|
|
@ -30,6 +30,10 @@ impl MonitorID {
|
|||
pub fn get_name(&self) -> Option<String> {
|
||||
Some("<Unknown>".to_string())
|
||||
}
|
||||
|
||||
pub fn get_dimensions(&self) -> (uint, uint) {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
||||
impl Window {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue