Esempio n. 1
0
void cbRepr(DcmStack& stk) {
    DcmType *dcm = safePeekMain(stk);
    stk.pop();
    stk.push(new DcmString(dcm->repr()));
    del(dcm);
}
Esempio n. 2
0
void cbBottom(DcmStack& stk) {
    stk.push(new DcmBool(stk.empty()));
}
Esempio n. 3
0
File: io.cpp Progetto: xorgy/dcm
void cbInput(DcmStack& stk) {
    string str;
    getline(dcmin, str);
    stk.push(new DcmString(str));
}