summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/drawgroup.h
blob: 53b689c8ae67628ba0b7ab6859d866a16b6e1c43 (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
45
46
47
48
49
50
51
/*****
 * drawgroup.h
 * John Bowman
 *
 * Group elements in a picture to be deconstructed as a single object.
 *****/

#ifndef DRAWGROUP_H
#define DRAWGROUP_H

#include "drawelement.h"

namespace camp {

class drawBegin : public drawElement {
  string name;
public:
  drawBegin(string name="") : name(name) {}
  
  virtual ~drawBegin() {}

  bool begingroup() {return true;}
  
  bool write(prcfile *out, unsigned int *, vm::array *, vm::array *) {
    out->begingroup(name.c_str());
    return true;
  }

};
  
class drawEnd : public drawElement {
public:
  drawEnd() {}
  
  virtual ~drawEnd() {}

  bool endgroup() {return true;}
  
  bool write(prcfile *out, unsigned int *, vm::array *, vm::array *) {
    out->endgroup();
    return true;
  }

};

}

GC_DECLARE_PTRFREE(camp::drawBegin);
GC_DECLARE_PTRFREE(camp::drawEnd);

#endif