aboutsummaryrefslogtreecommitdiff
path: root/dmucs_dprop.h
blob: a6a57c2f636bd6d305aa858e54ad8f4f5e616b17 (plain)
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
#ifndef _DMUCS_DPROP_H_
#define _DMUCS_DPROP_H_ 1

/*
 * dmucs_dprop.h: the DMUCS Dprop definition.
 *
 * Copyright (C) 2005, 2006  Victor T. Norman
 *
 * This program 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 2 of the License, or (at your
 * option) any later version.
 *
 * This program 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 this program; if not, write to the Free Software Foundation, Inc.,
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

/*
 * A Dprop is a Dintinguishing Property of a host.  The administrator of a
 * DMUCS installation may want to partition her entire set of compilation
 * hosts into multiple subsets, with each host in a subset having a common
 * distinguishing property -- e.g., each subset may:
 *
 * o have a common architecture -- Solaris vs. Linux vs. FreeBsd -- and
 *   thus may be used for only certain compilations.
 * o be available to a certain set of users or a certain set of
 *   compilations.
 */

#include <string>

typedef std::string DmucsDprop;

const char *dprop2cstr(DmucsDprop d);

const int DPROP_MAX_STRLEN =	64;

#endif