diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-09-07 04:49:01 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-09-07 04:49:01 +0000 |
commit | dceee5506c4b747d6c3801d3f1649f9305dff2d5 (patch) | |
tree | c487fc2eb5a13824b27c6983a5620f90c4442fe8 /apps/drwho/SMR_Client.cpp | |
parent | 027290ebc37d5dd85440815f3d5840cd83b51b7a (diff) | |
download | ATCD-dceee5506c4b747d6c3801d3f1649f9305dff2d5.tar.gz |
*** empty log message ***
Diffstat (limited to 'apps/drwho/SMR_Client.cpp')
-rw-r--r-- | apps/drwho/SMR_Client.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/drwho/SMR_Client.cpp b/apps/drwho/SMR_Client.cpp new file mode 100644 index 00000000000..cd3d97717d5 --- /dev/null +++ b/apps/drwho/SMR_Client.cpp @@ -0,0 +1,19 @@ +// $Id$ +#include "Options.h" +#include "new.h" +#include "PMC_All.h" +#include "PMC_Flo.h" +#include "PMC_Usr.h" +#include "PMC_Ruser.h" +#include "SMR_Client.h" + +#ifndef __OPTIMIZE__ +SMR_Client::SMR_Client (short port_number) +{ + if (CM_Client::open (port_number) < 0) + perror (Options::program_name), exit (1); +} + +SMR_Client::~SMR_Client (void) +{} +#endif /* __OPTIMIZE__ */ |