]> cygwin.com Git - cygwin-apps/setup.git/blob - category.cc
2002-04-27 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / category.cc
1 /*
2 * Copyright (c) 2001, Robert Collins.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by Robert Collins <rbtcollins@hotmail.com>
13 *
14 */
15
16 /* categories for packages */
17
18 #include <stdlib.h>
19 #include <string.h>
20
21 #include "category.h"
22
23 /* normal members */
24
25 Category::Category ():next (0), name (), key (), packages (0)
26 {
27 }
28
29 Category::Category (String const &categoryname):
30 next (0),
31 name (categoryname), key(categoryname),
32 packages (0)
33 {
34 }
35
36 int
37 Categorycmp (Category const & a, Category const & b)
38 {
39 return a.name.casecompare (b.name);
40 }
41
42 int
43 Categorycmp (Category & a, Category & b)
44 {
45 return a.name.casecompare (b.name);
46 }
This page took 0.035881 seconds and 5 git commands to generate.