Source Code (Use browser search to find items of interest.)

Class Index

killustrator'GOState (./koffice/killustrator/share/GObject.h:425)

class GOState {
  friend class GObject;
protected:
  GOState () : rcount (1) {}

public:
  // should be protected, but ...
  virtual ~GOState () {}

  void ref () { rcount++; }
  void unref () { if (--rcount == 0) delete this; }

private:
  QWMatrix matrix;
  GObject::OutlineInfo oInfo;
  GObject::FillInfo fInfo;
  unsigned int rcount;
};