#include <rlplc.h>
List of all members.
Detailed Description
Definition at line 56 of file rlplc.h.
Constructor & Destructor Documentation
| rlPlcMem::~rlPlcMem |
( |
| ) |
[virtual] |
Member Function Documentation
| void rlPlcMem::clear |
( |
int |
bit | ) |
|
| double rlPlcMem::deltaDouble |
( |
| ) |
|
| float rlPlcMem::deltaFloat |
( |
| ) |
|
| int rlPlcMem::deltaInt |
( |
| ) |
|
| int rlPlcMem::doubleChanged |
( |
| ) |
|
| int rlPlcMem::doubleHasDecreased |
( |
| ) |
|
| int rlPlcMem::doubleHasIncreased |
( |
| ) |
|
| int rlPlcMem::floatChanged |
( |
| ) |
|
| int rlPlcMem::floatHasDecreased |
( |
| ) |
|
| int rlPlcMem::floatHasIncreased |
( |
| ) |
|
| int rlPlcMem::hasBeenCleared |
( |
int |
bit | ) |
|
Definition at line 326 of file rlplc.cpp.
{
if((i & bit) == 0)
{
if((i_old & bit) == 0) return 0;
else return 1;
}
return 0;
}
| int rlPlcMem::hasBeenSet |
( |
int |
bit | ) |
|
Definition at line 316 of file rlplc.cpp.
{
if(i & bit)
{
if(i_old & bit) return 0;
else return 1;
}
return 0;
}
| int rlPlcMem::intChanged |
( |
| ) |
|
| int rlPlcMem::intHasDecreased |
( |
| ) |
|
| int rlPlcMem::intHasIncreased |
( |
| ) |
|
| int rlPlcMem::isClear |
( |
int |
bit | ) |
|
Definition at line 310 of file rlplc.cpp.
{
if(i & bit) return 0;
else return 1;
}
| int rlPlcMem::isSet |
( |
int |
bit | ) |
|
Definition at line 304 of file rlplc.cpp.
{
if(i & bit) return 1;
else return 0;
}
| void rlPlcMem::rememberState |
( |
| ) |
|
| void rlPlcMem::set |
( |
int |
bit | ) |
|
Member Data Documentation
The documentation for this class was generated from the following files: