René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

Fill_ [Ming wrapper class]

The source

Fill_.h
#ifndef FILL_H
#define FILL_H

#include "ming.h"

class Fill_ {
  friend class Shape;

  protected:
    Fill_(SWFFill);
    SWFFill fill_;
};

#endif
Fill_.cpp
#include "Fill_.h"

Fill_::Fill_(SWFFill f) : fill_(f) {}