formatting is changed according to last astyle settings
[qtrapids] / src / include / qtrapids / info.hpp
index 221cc7a..81c7017 100644 (file)
@@ -16,20 +16,18 @@ static const uint32_t torrent_progress_percent = 10000;
 typedef libtorrent::torrent_status TorrentStatus_t;
 typedef libtorrent::torrent_status::state_t TorrentStatusIds_t;
 
-struct TorrentStatus
-{
-    enum Id
-    {
-        QUEUED_FOR_CHECKING = TorrentStatus_t::queued_for_checking,
-        CHECKING_FILES = TorrentStatus_t::checking_files,
-        DOWNLOADING_METADATA = TorrentStatus_t::downloading_metadata,
-        DOWNLOADING = TorrentStatus_t::downloading,
-        FINISHED = TorrentStatus_t::finished,
-        SEEDING = TorrentStatus_t::seeding,
-        ALLOCATING = TorrentStatus_t::allocating,
-        CHECKING_RESUME_DATA = TorrentStatus_t::checking_resume_data,
-        UNSPECIFIED
-    };
+struct TorrentStatus {
+       enum Id {
+               QUEUED_FOR_CHECKING = TorrentStatus_t::queued_for_checking,
+               CHECKING_FILES = TorrentStatus_t::checking_files,
+               DOWNLOADING_METADATA = TorrentStatus_t::downloading_metadata,
+               DOWNLOADING = TorrentStatus_t::downloading,
+               FINISHED = TorrentStatus_t::finished,
+               SEEDING = TorrentStatus_t::seeding,
+               ALLOCATING = TorrentStatus_t::allocating,
+               CHECKING_RESUME_DATA = TorrentStatus_t::checking_resume_data,
+               UNSPECIFIED
+       };
 };
 
 }