QLink Modem::list; // master list of known modems
Modem::Modem(const fxStr& id)
- : devID(id)
- , fifoName(FAX_FIFO "." | id)
+ : fifoName(FAX_FIFO "." | id)
+ , devID(id)
, lockHandler(*this)
{
state = DOWN; // modem down until notified otherwise
~ServerConfigDialStringRules();
};
ServerConfigDialStringRules::ServerConfigDialStringRules(ServerConfig& c, const char* f)
- : config(c), DialStringRules(f)
+ : DialStringRules(f), config(c)
{}
ServerConfigDialStringRules::~ServerConfigDialStringRules() {}
struct faxRequest {
FaxSendOp op; // send operation type
u_short dirnum; // directory index for TIFF images
- fxStr addr; // SUB/SEP for transmit/poll
fxStr item; // filename/password for transmit/poll
+ fxStr addr; // SUB/SEP for transmit/poll
faxRequest();
faxRequest(FaxSendOp, u_short dirnum, const fxStr& addr, const fxStr& item);
MIMEState(const char* type, const char* subtype);
MIMEState(MIMEState& parent);
MIMEState(MIMEState& parent, const char* type, const char* subtype);
- ~MIMEState();
+ virtual ~MIMEState();
u_int lineno; // input line number
bool parse(const MsgFmt&, fxStr& emsg);
, coverFile(other.coverFile)
, coverTemplate(other.coverTemplate)
, name(other.name)
+ , voicenumber(other.voicenumber)
, location(other.location)
, company(other.company)
, comments(other.comments)
, regarding(other.regarding)
- , voicenumber(other.voicenumber)
- , killTime(other.killTime)
- , sendTime(other.sendTime)
- , tagline(other.tagline)
- , pageSize(other.pageSize)
, fromlocation(other.fromlocation)
, fromfax(other.fromfax)
, fromvoice(other.fromvoice)
, fromcompany(other.fromcompany)
+ , killTime(other.killTime)
+ , sendTime(other.sendTime)
+ , tagline(other.tagline)
+ , pageSize(other.pageSize)
{
notify = other.notify;
autoCover = other.autoCover;