$search

ecl::IConsole Class Reference

Device for reading from standard output. More...

#include <console.hpp>

List of all members.

Public Member Functions

const Errorerror () const
 Returns the most recent error status.
 IConsole ()
 Default constructor.
bool open ()
 Dummy handle to satisfy the input device concept.
long read (char *s, const unsigned long &n) ecl_assert_throw_decl(StandardException)
 Reads a character string from standard input.
long read (char &c) ecl_assert_throw_decl(StandardException)
 Read a character from standard input.
virtual ~IConsole ()

Private Attributes

Error error_handler

Detailed Description

Device for reading from standard output.

Device for reading from standard output. It creates a wrapper class around the stdout handle from cstdio to implement an ecl output device. Do not use this directly, it serves only as the device handle for the console stream classes.

One peculiarity of this device, is that it will strip newlines from the incoming input. This is a characteristic exclusive to the input console device because of its interactive nature with the user.

Definition at line 195 of file console.hpp.


Constructor & Destructor Documentation

ecl::IConsole::IConsole (  )  [inline]

Default constructor.

Definition at line 200 of file console.hpp.

virtual ecl::IConsole::~IConsole (  )  [inline, virtual]

Definition at line 201 of file console.hpp.


Member Function Documentation

const Error& ecl::IConsole::error (  )  const [inline]

Returns the most recent error status.

Use this to check on the status of the object after a method has been called. Mostly this is here to serve as a graceful fallback for when exceptions are disabled.

Returns:

Definition at line 250 of file console.hpp.

bool ecl::IConsole::open (  )  [inline]

Dummy handle to satisfy the input device concept.

For console devices this does nothing - the standard input is always open. It is just a dummy handle built to ensure the input device concept is satisfied.

Returns:
bool : always returns true (it is always open).

Definition at line 213 of file console.hpp.

long ecl::IConsole::read ( char *  s,
const unsigned long &  n 
)

Reads a character string from standard input.

Reads a character string from standard input.

Parameters:
s : character string to read into from standard input.
n : the number of bytes to read.
Exceptions:
StandardException : throws if reading returned an error [debug mode only].

Definition at line 101 of file console.cpp.

long ecl::IConsole::read ( char &  c  ) 

Read a character from standard input.

Reads a single character from standard input.

Parameters:
c : character to read into from standard input.
Exceptions:
StandardException : throws if reading returned an error [debug mode only].

Definition at line 87 of file console.cpp.


Member Data Documentation

Definition at line 252 of file console.hpp.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends


ecl_devices
Author(s): Daniel Stonier (d.stonier@gmail.com)
autogenerated on Fri Mar 1 15:21:23 2013