#import #include "../../../storage/storage.hpp" @interface CountriesViewController : UIViewController { storage::TIndex m_index; /// Params for using self as delegate in confirmations. storage::TStatus m_countryStatus; storage::TIndex m_clickedIndex; uint64_t m_downloadSize; UITableViewCell * m_clickedCell; } - (id) initWithIndex: (storage::TIndex const &) index andHeader: (NSString *) header; - (void) OnCountryChange: (storage::TIndex const &) index; - (void) OnDownload: (storage::TIndex const &) index withProgress: (pair const &) progress; - (void) TryDownloadCountry; @end