#include "camtypes.h"
#include "nodetxts.h"
#include "fontman.h"
#include "nodetext.h"
#include "cxftext.h"
Go to the source code of this file.
Defines | |
#define | new CAM_DEBUG_NEW |
Functions | |
DECLARE_SOURCE ("$Revision: 1568 $") | |
BOOL | operator== (const TxtTabStop &t1, const TxtTabStop &t2) |
Comparison operator. | |
BOOL | operator!= (const TxtTabStop &t1, const TxtTabStop &t2) |
Comparison operator. |
|
Definition at line 191 of file txtattr.cpp. |
|
|
|
Comparison operator.
Definition at line 3356 of file txtattr.cpp.
|
|
Comparison operator.
Definition at line 3337 of file txtattr.cpp. 03338 { 03339 return t1.GetType() == t2.GetType() && t1.GetPosition() == t2.GetPosition() 03340 && t1.GetDecimalPointChar() == t2.GetDecimalPointChar() 03341 && t1.GetTabFillerChar() == t2.GetTabFillerChar(); 03342 }
|