Cupt
|
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_BINARYPACKAGE_SEEN 00019 #define CUPT_CACHE_BINARYPACKAGE_SEEN 00020 00022 00023 #include <cupt/fwd.hpp> 00024 #include <cupt/cache/package.hpp> 00025 00026 namespace cupt { 00027 namespace cache { 00028 00030 class CUPT_API BinaryPackage: public Package 00031 { 00032 const bool __allow_reinstall; 00033 protected: 00035 CUPT_LOCAL virtual shared_ptr< Version > _parse_version(const Version::InitializationParameters& initParams) const; 00036 CUPT_LOCAL virtual bool _is_architecture_appropriate(const shared_ptr< const Version >&) const; 00038 public: 00040 00045 BinaryPackage(const shared_ptr< const string >& binaryArchitecture, bool allowReinstall); 00047 vector< shared_ptr< const BinaryVersion > > getVersions() const; 00049 00052 shared_ptr< const BinaryVersion > getInstalledVersion() const; 00053 }; 00054 00055 } 00056 } 00057 00058 #endif 00059