Source Code (Use browser search to find items of interest.)

Class Index

kdelibs'ParseTreeBOOL (./kdelibs/kio/ktraderparsetree.h:274)

class ParseTreeBOOL : public ParseTreeBase
{
public:
  ParseTreeBOOL( bool arg ) { m_bool = arg; }

  bool eval( ParseContext *_context ) const { _context->type = ParseContext::T_BOOL; _context->b = m_bool; return true; }

protected:
  bool m_bool;
};