#include <filters.h>

Public Member Functions |
|
| FLTExport | FrameRange () |
| FLTExport | ~FrameRange () |
| FLTExport int | First () |
| FLTExport int | Last () |
| FLTExport int | Count () |
| FLTExport int | Current () |
| FLTExport int | Elapsed () |
| FLTExport void | SetFirst (int u) |
| FLTExport void | SetLast (int u) |
| FLTExport void | SetCurrent (int u) |
| FLTExport FrameRange | ( | ) | [inline] |
{start = end = current = 0;}
| FLTExport ~FrameRange | ( | ) | [inline] |
{};
| FLTExport int First | ( | ) | [inline] |
{ return (start); }
| FLTExport int Last | ( | ) | [inline] |
| FLTExport int Count | ( | ) | [inline] |
{ return (end - start + 1); }
| FLTExport int Current | ( | ) | [inline] |
| FLTExport int Elapsed | ( | ) | [inline] |
{ return (current - start); }
| FLTExport void SetFirst | ( | int | u | ) | [inline] |
{ start = u; }
| FLTExport void SetLast | ( | int | u | ) | [inline] |
{ end = u; }
| FLTExport void SetCurrent | ( | int | u | ) | [inline] |
{ current = u; }