Wt::SingleShot Class Reference

Inheritance diagram for Wt::SingleShot:

Inheritance graph
[legend]
Collaboration diagram for Wt::SingleShot:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 SingleShot ()
virtual bool operator() ()

Private Attributes

int count_

Detailed Description

Definition at line 221 of file application.cpp.


Constructor & Destructor Documentation

Wt::SingleShot::SingleShot (  )  [inline]

Definition at line 223 of file application.cpp.

00224             : count_(0) {}


Member Function Documentation

virtual bool Wt::SingleShot::operator() (  )  [inline, virtual]

Implements Wt::Application::Condition.

Definition at line 226 of file application.cpp.

References count_.

00226                               {
00227         if (count_)
00228             return true;
00229 
00230         count_++;
00231 
00232         return false;
00233     }


Member Data Documentation

int Wt::SingleShot::count_ [private]

Definition at line 236 of file application.cpp.

Referenced by operator()().


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

Generated Fri Jul 28 19:25:13 2006.
Copyright © 1998-2003 by the respective authors.

This document is licensed under the terms of the GNU Free Documentation License and may be freely distributed under the conditions given by this license.