/* (C) 2003 XDA Developers * Author: Willem Jan Hengeveld * Web: http://www.xda-developers.com/ * * $Header$ */ #ifndef __SWITCHER_H__ #include "gsmdevice.h" typedef enum { BAND_UNKNOWN= -1, BAND_900=1, BAND_1900=3, BAND_900_1800=6, } Band; class BandSwitcher { public: BandSwitcher(); ~BandSwitcher(); Band GetCurrentBand(); bool SwitchTo(Band band); private: GsmDevice g_gsm; }; #define __SWITCHER_H__ #endif