File: VersionInstalled.hh

package info (click to toggle)
packup 0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 636 kB
  • sloc: cpp: 8,016; makefile: 38
file content (53 lines) | stat: -rw-r--r-- 2,163 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/******************************************************************************\
 *    This file is part of packup.                                            *
 *                                                                            *
 *    packup is free software: you can redistribute it and/or modify          *
 *    it under the terms of the GNU General Public License as published by    *
 *    the Free Software Foundation, either version 3 of the License, or       *
 *    (at your option) any later version.                                     *
 *                                                                            *
 *    packup is distributed in the hope that it will be useful,               *
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of          *
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           *
 *    GNU General Public License for more details.                            *
 *                                                                            *
 *    You should have received a copy of the GNU General Public License       *
 *    along with packup.  If not, see <http://www.gnu.org/licenses/>.         *            
\******************************************************************************/           
/* 
 * File:   VesionInstalled.hh
 * Author: mikolas
 *
 * Created on September 16, 2010, 12:33 PM
 * Copyright (C) 2011, Mikolas Janota
 */

#ifndef VESIONINSTALLED_HH
#define	VESIONINSTALLED_HH
#include "common_types.hh"

class VersionInstalled {
public:
    inline VersionInstalled(Version version,bool installed)
    : _version(version),_installed(installed)  {}
    
    inline VersionInstalled(const VersionInstalled& orig)
    : _version(_version), _installed(orig._installed) {}
    
    
    inline Version version() const {return _version;}
    inline bool installed() const {return _installed;}
private:
    Version _version;
    bool _installed;
};

struct VersionInstalledCmp {
 inline bool operator()(const VersionInstalled& v1,const VersionInstalled& v2) const
 {
     return v1.version()<v2.version();
 }
};

#endif	/* VESIONINSTALLED_HH */