70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these libraries and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/*%% (c) Copyright 1993, 1994 Hewlett-Packard Company */
|
|
/*%% (c) Copyright 1993, 1994 International Business Machines Corp. */
|
|
/*%% (c) Copyright 1993, 1994 Sun Microsystems, Inc. */
|
|
/*%% (c) Copyright 1993, 1994 Novell, Inc. */
|
|
/*%% $XConsortium: prop.h /main/3 1995/10/20 16:26:11 rswiston $ */
|
|
/*
|
|
*
|
|
* prop.h
|
|
*
|
|
* Part of the inspect&repair tools.
|
|
*
|
|
* accumulates, prints, rewrites(?) data for a spec or link.
|
|
* This is for the sole use of dbck, so much less information
|
|
* hiding is done than the usual TT class definition style:
|
|
* in particular, data members are simply made public,
|
|
* instead of defining access functions.
|
|
*
|
|
* Copyright (c) 1990 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#ifndef _PROP_H
|
|
#define _PROP_H
|
|
|
|
#include "util/tt_object.h"
|
|
#include "util/tt_list.h"
|
|
#include "util/tt_table.h"
|
|
#include "util/tt_string.h"
|
|
|
|
declare_list_of(Prop)
|
|
declare_table_of(Prop)
|
|
|
|
class Prop : public _Tt_object {
|
|
public:
|
|
Prop(){};
|
|
Prop(_Tt_string propname);
|
|
~Prop() {};
|
|
virtual void print(FILE * f) const;
|
|
_Tt_string &name() { /* key access for table package */
|
|
return _name;
|
|
}
|
|
_Tt_string _name;
|
|
_Tt_string_list_ptr _values;
|
|
};
|
|
|
|
_Tt_string _tt_prop_name(_Tt_object_ptr &o);
|
|
|
|
#endif /* _SPEC_H */
|