#ifndef _OPERATOR_H_
#define _OPERATOR_H_

namespace canvas {
  enum Operator {
    SOURCE_OVER = 1,
    COPY
  };
};

#endif
