blob: 7d259f7e3b86ca47fefbc1b445d5de9d2cd2252c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
from util.generic.ptr cimport TIntrusivePtr
cdef extern from "library/cpp/monlib/metrics/metric_consumer.h" namespace "NMonitoring" nogil:
cdef cppclass IMetricConsumer:
pass
ctypedef TIntrusivePtr[IMetricConsumer] IMetricConsumerPtr
|