networkServer.cpp 444 B

123456789101112131415
  1. #include "networkServer.hpp"
  2. /*
  3. * CONSTRUCTORS
  4. */
  5. // Used to generate the first server; instantiates BGN for the first time
  6. PrsonaNetworkServer::PrsonaNetworkServer(size_t numServers)
  7. : PrsonaServer(numServers)
  8. { /* Do nothing */ }
  9. // Used for all other servers, so they have the same BGN parameters
  10. PrsonaNetworkServer::PrsonaNetworkServer(size_t numServers, const BGN& otherBgn)
  11. : PrsonaServer(numServers, otherBgn)
  12. { /* Do nothing */ }