source: git/Singular/attrib.h @ 341696

spielwiese
Last change on this file since 341696 was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.5 KB
Line 
1#ifndef ATTRIB_H
2#define ATTRIB_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id$ */
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(const ring r);
31    void killAll(const ring r);
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 at_KillAll(idhdl root,const ring r);
41#define atKillAll(H) at_KillAll(H,currRing)
42void at_Kill(idhdl root,const char * name,const ring r);
43#define atKill(H,A) at_Kill(H,A,currRing)
44
45BOOLEAN atATTRIB1(leftv res,leftv a);
46BOOLEAN atATTRIB2(leftv res,leftv a,leftv b);
47BOOLEAN atATTRIB3(leftv res,leftv a,leftv b,leftv c);
48BOOLEAN atKILLATTR1(leftv res,leftv a);
49BOOLEAN atKILLATTR2(leftv res,leftv a,leftv b);
50#endif
Note: See TracBrowser for help on using the repository browser.