SNAP Library 2.2, Developer Reference  2014-03-11 19:15:55
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
TOLx Class Reference

#include <lx.h>

Collaboration diagram for TOLx:

List of all members.

Public Member Functions

 TOLx (const PSOut &_SOut, const TFSet &OptSet, const TLxChDefTy &ChDefTy=lcdtUsAscii)
TOLxoperator= (const TOLx &)
void SetOpt (const int &Opt, const bool &Val)
TLxSym AddRw (const TStr &Str)
PSOut GetSOut (const char &SepCh)
void PutSym (const TLxSym &Sym)
void PutBool (const TBool &Bool)
void PutInt (const TInt &Int)
void PutFlt (const TFlt &Flt, const int &Width=-1, const int &Prec=-1)
void PutStr (const TStr &Str)
void PutIdStr (const TStr &Str, const bool &CheckIdStr=true)
void PutQStr (const TStr &Str)
void PutQStr (const TChA &ChA)
void PutUQStr (const TStr &Str)
void PutLnCmt (const TStr &Str, const int &IndentLev=0)
void PutParCmt (const TStr &Str)
void PutIndent (const int &IndentLev)
void PutTab () const
void PutLn (const int &IndentLev=0)
void PutDosLn (const int &IndentLev=0)
void PutVar (const TStr &VarNm, const bool &LBracket=false, const bool &NewLn=false, const bool &CheckIdStr=true)
void PutVarEnd (const bool &RBracket=false, const bool &NewLn=false)
void PutVarBool (const TStr &VarNm, const bool &Bool, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarInt (const TStr &VarNm, const int &Int, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarFlt (const TStr &VarNm, const double &Flt, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarStr (const TStr &VarNm, const TStr &Str, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarSecTm (const TStr &VarNm, const TSecTm &SecTm, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarBoolV (const TStr &VarNm, const TBoolV &BoolV, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarIntV (const TStr &VarNm, const TIntV &IntV, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarFltV (const TStr &VarNm, const TFltV &FltV, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarStrV (const TStr &VarNm, const TStrV &StrV, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarStrPrV (const TStr &VarNm, const TStrPrV &StrPrV, const bool &NewLn=true, const bool &CheckIdStr=true)
void PutVarStrVV (const TStr &VarNm, const TVec< TStrV > &StrVV, const bool &NewLn=true, const bool &CheckIdStr=true)

Private Member Functions

void PutSep (const TLxSym &Sym)

Private Attributes

PLxChDef ChDef
PSOut SOut
TSOutRSOut
bool IsCmtAlw
bool IsFrcEoln
bool IsSigNum
bool IsUniStr
bool IsCsSens
bool IsTabSep
bool IsVarIndent
int VarIndentLev
TStrIntH RwStrH
TIntStrH RwSymH
TLxSym PrevSym

Detailed Description

Definition at line 251 of file lx.h.


Constructor & Destructor Documentation

TOLx::TOLx ( const PSOut _SOut,
const TFSet OptSet,
const TLxChDefTy ChDefTy = lcdtUsAscii 
)

Definition at line 718 of file lx.cpp.

References TFSet::In(), oloMx, and SetOpt().

                                                                            :
  ChDef(TLxChDef::GetChDef(ChDefTy)), SOut(_SOut), RSOut(*SOut),
  IsCmtAlw(false), IsFrcEoln(false), IsSigNum(false),
  IsUniStr(false), IsCsSens(false), IsTabSep(false), IsVarIndent(false),
  VarIndentLev(0),
  RwStrH(50), RwSymH(50), PrevSym(syUndef){
  for (int Opt=0; Opt<oloMx; Opt++){
    if (OptSet.In(Opt)){SetOpt(Opt, true);}}
}

Here is the call graph for this function:


Member Function Documentation

TLxSym TOLx::AddRw ( const TStr Str)

Definition at line 741 of file lx.cpp.

References THash< TKey, TDat, THashFunc >::AddDat(), ChDef, TLxChDef::GetUcStr(), IAssert, THash< TKey, TDat, THashFunc >::IsKey(), THash< TKey, TDat, THashFunc >::Len(), RwStrH, RwSymH, syMnRw, and syMxRw.

                                 {
  IAssert(RwStrH.Len()<syMxRw-syMnRw+1);
  TStr UcStr=ChDef->GetUcStr(Str);
  IAssert(!RwStrH.IsKey(UcStr));
  TLxSym RwSym=TLxSym(syMnRw+RwStrH.Len());
  RwStrH.AddDat(Str, TInt(int(RwSym)));
  RwSymH.AddDat(TInt(int(RwSym)), Str);
  return RwSym;
}

Here is the call graph for this function:

PSOut TOLx::GetSOut ( const char &  SepCh) [inline]

Definition at line 271 of file lx.h.

References TSOut::PutCh(), RSOut, and SOut.

                                  {
    RSOut.PutCh(SepCh); return SOut;}

Here is the call graph for this function:

TOLx& TOLx::operator= ( const TOLx ) [inline]

Definition at line 267 of file lx.h.

References Fail.

{Fail; return *this;}
void TOLx::PutBool ( const TBool Bool) [inline]

Definition at line 275 of file lx.h.

References TBool::GetStr(), PutSep(), TSOut::PutStr(), RSOut, and syIdStr.

Referenced by PutVarBool(), PutVarBoolV(), and TPpVal::SaveTxt().

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutDosLn ( const int &  IndentLev = 0) [inline]

Definition at line 305 of file lx.h.

References Assert, IsFrcEoln, TSOut::PutCh(), TSOut::PutDosLn(), PutSep(), RSOut, and syEoln.

                                       {
    Assert(IsFrcEoln);
    PutSep(syEoln); RSOut.PutDosLn(); RSOut.PutCh(' ', IndentLev*2);}

Here is the call graph for this function:

void TOLx::PutFlt ( const TFlt Flt,
const int &  Width = -1,
const int &  Prec = -1 
) [inline]

Definition at line 280 of file lx.h.

References Assert, TFlt::GetStr(), IsSigNum, PutSep(), TSOut::PutStr(), RSOut, and syFlt.

Referenced by PutVarFlt(), PutVarFltV(), TExpVal::SaveTxt(), and TPpVal::SaveTxt().

                                                                       {
    if (!IsSigNum){Assert(Flt>=0);}
    PutSep(syFlt); RSOut.PutStr(TFlt::GetStr(Flt, Width, Prec));}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutIdStr ( const TStr Str,
const bool &  CheckIdStr = true 
) [inline]

Definition at line 286 of file lx.h.

References Assert, ChDef, TLxChDef::IsNmStr(), PutSep(), TSOut::PutStr(), RSOut, and syIdStr.

Referenced by PutVar(), PutVarBool(), PutVarFlt(), PutVarInt(), PutVarSecTm(), PutVarStr(), TPpTag::SaveTxt(), TExpVal::SaveTxt(), TPpVal::SaveTxt(), TPp::SaveTxt(), and TExp::SaveTxt().

                                                             {
    if (CheckIdStr){Assert(ChDef->IsNmStr(Str));}
    PutSep(syIdStr); RSOut.PutStr(Str);}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutIndent ( const int &  IndentLev) [inline]

Definition at line 299 of file lx.h.

References TSOut::PutCh(), and RSOut.

Referenced by PutVar(), PutVarBool(), PutVarBoolV(), PutVarEnd(), PutVarFlt(), PutVarFltV(), PutVarInt(), PutVarIntV(), PutVarSecTm(), PutVarStr(), PutVarStrPrV(), PutVarStrV(), and PutVarStrVV().

                                      {
    RSOut.PutCh(' ', IndentLev*2);}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutInt ( const TInt Int) [inline]

Definition at line 277 of file lx.h.

References Assert, TInt::GetStr(), IsSigNum, PutSep(), TSOut::PutStr(), RSOut, and syInt.

Referenced by PutVarInt(), PutVarIntV(), TPpVal::SaveTxt(), TRnd::SaveTxt(), and TSecTm::SaveTxt().

                              {
    if (!IsSigNum){Assert(int(Int)>=0);}
    PutSep(syInt); RSOut.PutStr(TInt::GetStr(Int));}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutLn ( const int &  IndentLev = 0) [inline]

Definition at line 302 of file lx.h.

References Assert, IsFrcEoln, TSOut::PutCh(), TSOut::PutLn(), PutSep(), RSOut, and syEoln.

Referenced by PutLnCmt(), PutVar(), PutVarBool(), PutVarBoolV(), PutVarEnd(), PutVarFlt(), PutVarFltV(), PutVarInt(), PutVarIntV(), PutVarSecTm(), PutVarStr(), PutVarStrPrV(), PutVarStrV(), and PutVarStrVV().

                                    {
    Assert(IsFrcEoln);
    PutSep(syEoln); RSOut.PutLn(); RSOut.PutCh(' ', IndentLev*2);}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutLnCmt ( const TStr Str,
const int &  IndentLev = 0 
) [inline]

Definition at line 295 of file lx.h.

References Assert, IsCmtAlw, PutLn(), and PutStr().

                                                        {
    Assert(IsCmtAlw); PutStr(" // "); PutStr(Str); PutLn(IndentLev);}

Here is the call graph for this function:

void TOLx::PutParCmt ( const TStr Str) [inline]

Definition at line 297 of file lx.h.

References Assert, IsCmtAlw, and PutStr().

                                 {
    Assert(IsCmtAlw); PutStr(" /* "); PutStr(Str); PutStr(" */ ");}

Here is the call graph for this function:

void TOLx::PutQStr ( const TStr Str) [inline]

Definition at line 289 of file lx.h.

References TSOut::PutCh(), PutSep(), TSOut::PutStr(), RSOut, and syQStr.

Referenced by PutVarStr(), PutVarStrPrV(), PutVarStrV(), PutVarStrVV(), TExpVal::SaveTxt(), TPpVal::SaveTxt(), and TPp::SaveTxt().

                               {
    PutSep(syQStr); RSOut.PutCh('"'); RSOut.PutStr(Str); RSOut.PutCh('"');}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutQStr ( const TChA ChA) [inline]

Definition at line 291 of file lx.h.

References TSOut::PutCh(), PutSep(), TSOut::PutStr(), RSOut, and syQStr.

                               {
    PutSep(syQStr); RSOut.PutCh('"'); RSOut.PutStr(ChA); RSOut.PutCh('"');}

Here is the call graph for this function:

void TOLx::PutSep ( const TLxSym Sym) [private]

Definition at line 712 of file lx.cpp.

References TLxSymStr::IsSep(), IsTabSep, PrevSym, TSOut::PutCh(), RSOut, and TCh::TabCh.

Referenced by PutBool(), PutDosLn(), PutFlt(), PutIdStr(), PutInt(), PutLn(), PutQStr(), PutStr(), PutSym(), and PutUQStr().

                                  {
  if (TLxSymStr::IsSep(PrevSym, Sym)){
    if (IsTabSep){RSOut.PutCh(TCh::TabCh);} else {RSOut.PutCh(' ');}}
  PrevSym=Sym;
}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutStr ( const TStr Str) [inline]

Definition at line 283 of file lx.h.

References ChDef, TLxChDef::IsNmStr(), IsUniStr, TSOut::PutCh(), PutSep(), TSOut::PutStr(), RSOut, syIdStr, and syStr.

Referenced by PutLnCmt(), and PutParCmt().

                              {
    if ((IsUniStr)&&(ChDef->IsNmStr(Str))){PutSep(syIdStr); RSOut.PutStr(Str);}
    else {PutSep(syStr); RSOut.PutCh('"'); RSOut.PutStr(Str); RSOut.PutCh('"');}}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutSym ( const TLxSym Sym)

Definition at line 751 of file lx.cpp.

References TLxSymStr::GetSymStr(), PutSep(), TSOut::PutStr(), RSOut, RwSymH, syMnRw, and syMxRw.

Referenced by PutVar(), PutVarBool(), PutVarEnd(), PutVarFlt(), PutVarInt(), PutVarSecTm(), PutVarStr(), PutVarStrPrV(), PutVarStrVV(), TExpVal::SaveTxt(), TPpVal::SaveTxt(), TPp::SaveTxt(), TExp::SaveTxt(), and TExp::SaveTxtOp().

                                  {
  TStr Str;
  if ((syMnRw<=Sym)&&(Sym<=syMxRw)){
    Str=Str=RwSymH[Sym];
  } else {
    Str=TLxSymStr::GetSymStr(Sym);
  }
  PutSep(Sym); RSOut.PutStr(Str);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutTab ( ) const [inline]

Definition at line 301 of file lx.h.

References TSOut::PutCh(), RSOut, and TCh::TabCh.

Here is the call graph for this function:

void TOLx::PutUQStr ( const TStr Str) [inline]

Definition at line 293 of file lx.h.

References PutSep(), TSOut::PutStr(), RSOut, and syIdStr.

                                {
    PutSep(syIdStr); RSOut.PutStr(Str);}

Here is the call graph for this function:

void TOLx::PutVar ( const TStr VarNm,
const bool &  LBracket = false,
const bool &  NewLn = false,
const bool &  CheckIdStr = true 
) [inline]

Definition at line 309 of file lx.h.

References IsVarIndent, PutIdStr(), PutIndent(), PutLn(), PutSym(), syColon, syLBracket, and VarIndentLev.

Referenced by PutVarBoolV(), PutVarFltV(), PutVarIntV(), PutVarStrPrV(), PutVarStrV(), PutVarStrVV(), and TPp::SaveTxt().

                                                        {
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutIdStr(VarNm, CheckIdStr); PutSym(syColon);
    if (LBracket){PutSym(syLBracket);}
    if (NewLn){PutLn(); VarIndentLev++;}}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutVarBool ( const TStr VarNm,
const bool &  Bool,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
) [inline]

Definition at line 319 of file lx.h.

References IsVarIndent, PutBool(), PutIdStr(), PutIndent(), PutLn(), PutSym(), syColon, and VarIndentLev.

                                                       {
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutIdStr(VarNm, CheckIdStr); PutSym(syColon); PutBool(Bool);
    if (NewLn){PutLn();}}

Here is the call graph for this function:

void TOLx::PutVarBoolV ( const TStr VarNm,
const TBoolV BoolV,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
)

Definition at line 761 of file lx.cpp.

References IsVarIndent, TVec< TVal, TSizeTy >::Len(), PutBool(), PutIndent(), PutLn(), PutVar(), PutVarEnd(), and VarIndentLev.

                                           {
  PutVar(VarNm, true, NewLn, CheckIdStr);
  for (int BoolN=0; BoolN<BoolV.Len(); BoolN++){
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutBool(BoolV[BoolN]);
    if (NewLn){PutLn();}
  }
  PutVarEnd(true, NewLn);
}

Here is the call graph for this function:

void TOLx::PutVarEnd ( const bool &  RBracket = false,
const bool &  NewLn = false 
) [inline]

Definition at line 315 of file lx.h.

References IsVarIndent, PutIndent(), PutLn(), PutSym(), syRBracket, and VarIndentLev.

Referenced by PutVarBoolV(), PutVarFltV(), PutVarIntV(), PutVarStrPrV(), PutVarStrV(), and PutVarStrVV().

                                                                     {
    if (IsVarIndent){PutIndent(VarIndentLev-1);}
    if (RBracket){PutSym(syRBracket);}
    if (NewLn){PutLn(); VarIndentLev--;}}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutVarFlt ( const TStr VarNm,
const double &  Flt,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
) [inline]

Definition at line 329 of file lx.h.

References IsVarIndent, PutFlt(), PutIdStr(), PutIndent(), PutLn(), PutSym(), syColon, and VarIndentLev.

                                                       {
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutIdStr(VarNm, CheckIdStr); PutSym(syColon); PutFlt(Flt);
    if (NewLn){PutLn();}}

Here is the call graph for this function:

void TOLx::PutVarFltV ( const TStr VarNm,
const TFltV FltV,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
)

Definition at line 783 of file lx.cpp.

References IsVarIndent, TVec< TVal, TSizeTy >::Len(), PutFlt(), PutIndent(), PutLn(), PutVar(), PutVarEnd(), and VarIndentLev.

                                           {
  PutVar(VarNm, true, NewLn, CheckIdStr);
  for (int FltN=0; FltN<FltV.Len(); FltN++){
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutFlt(FltV[FltN]);
    if (NewLn){PutLn();}
  }
  PutVarEnd(true, NewLn);
}

Here is the call graph for this function:

void TOLx::PutVarInt ( const TStr VarNm,
const int &  Int,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
) [inline]

Definition at line 324 of file lx.h.

References IsVarIndent, PutIdStr(), PutIndent(), PutInt(), PutLn(), PutSym(), syColon, and VarIndentLev.

Referenced by TMBlobBs::SaveMain().

                                                       {
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutIdStr(VarNm, CheckIdStr); PutSym(syColon); PutInt(Int);
    if (NewLn){PutLn();}}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutVarIntV ( const TStr VarNm,
const TIntV IntV,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
)

Definition at line 772 of file lx.cpp.

References IsVarIndent, TVec< TVal, TSizeTy >::Len(), PutIndent(), PutInt(), PutLn(), PutVar(), PutVarEnd(), and VarIndentLev.

                                           {
  PutVar(VarNm, true, NewLn, CheckIdStr);
  for (int IntN=0; IntN<IntV.Len(); IntN++){
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutInt(IntV[IntN]);
    if (NewLn){PutLn();}
  }
  PutVarEnd(true, NewLn);
}

Here is the call graph for this function:

void TOLx::PutVarSecTm ( const TStr VarNm,
const TSecTm SecTm,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
) [inline]

Definition at line 339 of file lx.h.

References IsVarIndent, PutIdStr(), PutIndent(), PutLn(), PutSym(), TSecTm::SaveTxt(), syColon, and VarIndentLev.

                                                       {
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutIdStr(VarNm, CheckIdStr); PutSym(syColon); SecTm.SaveTxt(*this);
    if (NewLn){PutLn();}}

Here is the call graph for this function:

void TOLx::PutVarStr ( const TStr VarNm,
const TStr Str,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
) [inline]

Definition at line 334 of file lx.h.

References IsVarIndent, PutIdStr(), PutIndent(), PutLn(), PutQStr(), PutSym(), syColon, and VarIndentLev.

Referenced by TMBlobBs::SaveMain().

                                                       {
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutIdStr(VarNm, CheckIdStr); PutSym(syColon); PutQStr(Str);
    if (NewLn){PutLn();}}

Here is the call graph for this function:

Here is the caller graph for this function:

void TOLx::PutVarStrPrV ( const TStr VarNm,
const TStrPrV StrPrV,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
)

Definition at line 805 of file lx.cpp.

References IsVarIndent, TVec< TVal, TSizeTy >::Len(), PutIndent(), PutLn(), PutQStr(), PutSym(), PutVar(), PutVarEnd(), syLBracket, syRBracket, and VarIndentLev.

                                           {
  PutVar(VarNm, true, NewLn, CheckIdStr);
  for (int StrPrN=0; StrPrN<StrPrV.Len(); StrPrN++){
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutSym(syLBracket);
    PutQStr(StrPrV[StrPrN].Val1); PutQStr(StrPrV[StrPrN].Val2);
    PutSym(syRBracket);
    if (NewLn){PutLn();}
  }
  PutVarEnd(true, NewLn);
}

Here is the call graph for this function:

void TOLx::PutVarStrV ( const TStr VarNm,
const TStrV StrV,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
)

Definition at line 794 of file lx.cpp.

References IsVarIndent, TVec< TVal, TSizeTy >::Len(), PutIndent(), PutLn(), PutQStr(), PutVar(), PutVarEnd(), and VarIndentLev.

                                           {
  PutVar(VarNm, true, NewLn, CheckIdStr);
  for (int StrN=0; StrN<StrV.Len(); StrN++){
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutQStr(StrV[StrN]);
    if (NewLn){PutLn();}
  }
  PutVarEnd(true, NewLn);
}

Here is the call graph for this function:

void TOLx::PutVarStrVV ( const TStr VarNm,
const TVec< TStrV > &  StrVV,
const bool &  NewLn = true,
const bool &  CheckIdStr = true 
)

Definition at line 818 of file lx.cpp.

References IsVarIndent, TVec< TVal, TSizeTy >::Len(), PutIndent(), PutLn(), PutQStr(), PutSym(), PutVar(), PutVarEnd(), syLBracket, syRBracket, and VarIndentLev.

                                           {
  PutVar(VarNm, true, NewLn, CheckIdStr);
  for (int StrVN=0; StrVN<StrVV.Len(); StrVN++){
    if (IsVarIndent){PutIndent(VarIndentLev);}
    PutSym(syLBracket);
    for (int StrN=0; StrN<StrVV[StrVN].Len(); StrN++){
      PutQStr(StrVV[StrVN][StrN]);}
    PutSym(syRBracket);
    if (NewLn){PutLn();}
  }
  PutVarEnd(true, NewLn);
}

Here is the call graph for this function:

void TOLx::SetOpt ( const int &  Opt,
const bool &  Val 
)

Definition at line 728 of file lx.cpp.

References Fail, IsCmtAlw, IsCsSens, IsFrcEoln, IsSigNum, IsTabSep, IsUniStr, IsVarIndent, oloCmtAlw, oloCsSens, oloFrcEoln, oloSigNum, oloTabSep, oloUniStr, and oloVarIndent.

Referenced by TOLx().

                                                {
  switch (Opt){
    case oloCmtAlw: IsCmtAlw=Val; break;
    case oloFrcEoln: IsFrcEoln=Val; break;
    case oloSigNum: IsSigNum=Val; break;
    case oloUniStr: IsUniStr=Val; break;
    case oloCsSens: IsCsSens=Val; break;
    case oloTabSep: IsTabSep=Val; break;
    case oloVarIndent: IsVarIndent=Val; break;
    default: Fail;
  }
}

Here is the caller graph for this function:


Member Data Documentation

PLxChDef TOLx::ChDef [private]

Definition at line 253 of file lx.h.

Referenced by AddRw(), PutIdStr(), and PutStr().

bool TOLx::IsCmtAlw [private]

Definition at line 256 of file lx.h.

Referenced by PutLnCmt(), PutParCmt(), and SetOpt().

bool TOLx::IsCsSens [private]

Definition at line 257 of file lx.h.

Referenced by SetOpt().

bool TOLx::IsFrcEoln [private]

Definition at line 256 of file lx.h.

Referenced by PutDosLn(), PutLn(), and SetOpt().

bool TOLx::IsSigNum [private]

Definition at line 256 of file lx.h.

Referenced by PutFlt(), PutInt(), and SetOpt().

bool TOLx::IsTabSep [private]

Definition at line 257 of file lx.h.

Referenced by PutSep(), and SetOpt().

bool TOLx::IsUniStr [private]

Definition at line 256 of file lx.h.

Referenced by PutStr(), and SetOpt().

TLxSym TOLx::PrevSym [private]

Definition at line 261 of file lx.h.

Referenced by PutSep().

Definition at line 259 of file lx.h.

Referenced by AddRw().

Definition at line 260 of file lx.h.

Referenced by AddRw(), and PutSym().

PSOut TOLx::SOut [private]

Definition at line 254 of file lx.h.

Referenced by GetSOut().


The documentation for this class was generated from the following files: