Go to the first, previous, next, last section, table of contents.


EZDServer -- Graphical Representation of a Server

SYNOPSIS

#include <CNCL/EZDServer.h>

TYPE

CN_EZDSERVER

BASE CLASSES

EZDObject

DERIVED CLASSES

None

RELATED CLASSES

EZDQueue

DESCRIPTION:


EZDServer is the graphical representation of a server. This drawing is handled as an EZDObject, in which x is the most left and y the middle axis' coordinate.
Constructors:

EZDServer();
EZDServer(CNParan *param);
EZDServer(int x, int y , int radius = RADIUS);
EZDServer(const CNString &name, int x, int y, int radius=RADIUS);
Initializes an EZDServer as an EZDObject (default object name : "server" ) inside the current drawing at the coordinates (x,y) ( default value (0,0) ) with radius ( default 20 pixels ).

In addition to the member functions required by CNCL, EZDServer provides:

virtual void redraw();
Redraws the server in the current drawing.
void color(const CNString &c);
Sets the color of the server to c and redraws the server in the current drawing.


Go to the first, previous, next, last section, table of contents.