source: git/Singular/attrib.h @ 85e68dd

spielwiese
Last change on this file since 85e68dd was 85e68dd, checked in by Hans Schönemann <hannes@…>, 16 years ago
*hannes: gcc 4.2 git-svn-id: file:///usr/local/Singular/svn/trunk@10634 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.4 KB
Line 
1#ifndef ATTRIB_H
2#define ATTRIB_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: attrib.h,v 1.8 2008-03-19 17:44:29 Singular Exp $ */
7/*
8* ABSTRACT: attributes to leftv and idhdl
9*/
10#include <string.h>
11#include "structs.h"
12
13class sattr;
14typedef sattr * attr;
15class sattr
16{
17  public:
18    void Init() { memset(this,0,sizeof(*this)); }
19    const char *  name;
20    void *  data;
21    attr    next;
22    int     atyp; /* the type of the attribut, describes the data field
23                  */
24
25    void Print();
26    attr Copy(); /* copy all arguments */
27    void * CopyA(); /* copy the data of this attribute */
28    attr set(const char * s, void * data, int t);
29    attr get(const char * s);
30    void kill();
31    void killAll();
32};
33
34void * atGet(idhdl root,const char * name);
35void * atGet(leftv root,const char * name);
36void * atGet(idhdl root,const char * name, int t);
37void * atGet(leftv root,const char * name, int t);
38void atSet(idhdl root,const char * name,void * data,int typ);
39void atSet(leftv root,const char * name,void * data,int typ);
40void atKillAll(idhdl root);
41void atKill(idhdl root,const char * name);
42
43BOOLEAN atATTRIB1(leftv res,leftv a);
44BOOLEAN atATTRIB2(leftv res,leftv a,leftv b);
45BOOLEAN atATTRIB3(leftv res,leftv a,leftv b,leftv c);
46BOOLEAN atKILLATTR1(leftv res,leftv a);
47BOOLEAN atKILLATTR2(leftv res,leftv a,leftv b);
48#endif
Note: See TracBrowser for help on using the repository browser.