aboutsummaryrefslogtreecommitdiffstats
path: root/util/stream/str.pxd
blob: bfdb071559bd17cddad1b64300edcd126dc52761 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from util.generic.ptr cimport THolder 
from util.generic.string cimport TString, TStringBuf 
from util.stream.output cimport IOutputStream 
 
 
cdef extern from "<util/stream/str.h>" nogil: 
    cdef cppclass TStringOutput(IOutputStream): 
        TStringOutput() except+ 
        TStringOutput(TString&) except+ 
        void Reserve(size_t) except+ 
 
ctypedef THolder[TStringOutput] TStringOutputPtr