/*
7 * MenTaLguY <mental@rydia.net>
9 * Copyright (C) 2018 Authors
10 * Released under GNU GPL v2+, read the file
'COPYING' for more information.
13#ifndef SEEN_INKSCAPE_GC_MANAGED_H
14#define SEEN_INKSCAPE_GC_MANAGED_H
29 void *
operator new(std::size_t
size,
33 return ::operator
new(
size, scan, collect);
36 void *
operator new[](std::size_t
size,
40 return ::operator
new[](
size, scan, collect);
43 void operator delete(
void *p) { return ::operator
delete(p,
GC); }
A base class for objects for whom the normal new and delete operators should use the garbage-collecte...
Helper class to stream background task notifications as a series of messages.