Add get_dimensions() to MonitorID

This commit is contained in:
Tomaka17 2014-08-02 11:17:49 +02:00
parent dbaef704ad
commit abceca1121
3 changed files with 27 additions and 2 deletions

View file

@ -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 {