Cupt
releaseinfo.hpp
Go to the documentation of this file.
00001 /**************************************************************************
00002 *   Copyright (C) 2010 by Eugene V. Lyubimkin                             *
00003 *                                                                         *
00004 *   This program is free software; you can redistribute it and/or modify  *
00005 *   it under the terms of the GNU General Public License                  *
00006 *   (version 3 or above) as published by the Free Software Foundation.    *
00007 *                                                                         *
00008 *   This program is distributed in the hope that it will be useful,       *
00009 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00010 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00011 *   GNU General Public License for more details.                          *
00012 *                                                                         *
00013 *   You should have received a copy of the GNU GPL                        *
00014 *   along with this program; if not, write to the                         *
00015 *   Free Software Foundation, Inc.,                                       *
00016 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA               *
00017 **************************************************************************/
00018 #ifndef CUPT_CACHE_RELEASE_INFO_SEEN
00019 #define CUPT_CACHE_RELEASE_INFO_SEEN
00020 
00022 
00023 #include <cupt/common.hpp>
00024 
00025 namespace cupt {
00027 namespace cache {
00028 
00030 struct CUPT_API ReleaseInfo
00031 {
00032     bool verified; 
00033     string version; 
00034     string description; 
00035     string vendor; 
00036     string label; 
00037     string archive; 
00038     string codename; 
00039     string component; 
00040     string date; 
00041     string validUntilDate; 
00042     vector< string> architectures; 
00043     string baseUri; 
00044     bool notAutomatic; 
00045     bool butAutomaticUpgrades; 
00046 };
00047 
00048 }
00049 }
00050 
00051 #endif
00052