Blame pango/src/coverage.ccg

Packit 78284e
// -*- c++ -*-
Packit 78284e
/* $Id: coverage.ccg,v 1.1 2003/01/21 13:41:02 murrayc Exp $ */
Packit 78284e
Packit 78284e
/*
Packit 78284e
 *
Packit 78284e
 * Copyright 1998-1999 The Gtk-- Development Team
Packit 78284e
 * Copyright 2001      Free Software Foundation
Packit 78284e
 *
Packit 78284e
 * This library is free software; you can redistribute it and/or
Packit 78284e
 * modify it under the terms of the GNU Lesser General Public
Packit 78284e
 * License as published by the Free Software Foundation; either
Packit 78284e
 * version 2.1 of the License, or (at your option) any later version.
Packit 78284e
 *
Packit 78284e
 * This library is distributed in the hope that it will be useful,
Packit 78284e
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 78284e
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 78284e
 * Lesser General Public License for more details.
Packit 78284e
 *
Packit 78284e
 * You should have received a copy of the GNU Lesser General Public
Packit 78284e
 * License along with this library; if not, write to the Free
Packit 78284e
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Packit 78284e
 */
Packit 78284e
Packit 78284e
namespace Pango
Packit 78284e
{
Packit 78284e
Packit 78284e
Glib::ArrayHandle<unsigned char> Coverage::to_bytes() const
Packit 78284e
{
Packit 78284e
  guchar* bytes = 0;
Packit 78284e
  int n_bytes = 0;
Packit 78284e
  pango_coverage_to_bytes(const_cast<PangoCoverage*>(gobj()), &bytes, &n_bytes);
Packit 78284e
  return Glib::ArrayHandle<unsigned char>(bytes, n_bytes, Glib::OWNERSHIP_SHALLOW);
Packit 78284e
}
Packit 78284e
Packit 78284e
} /* namespace Pango */