Free Electron
BeaconClientStartup.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __BeaconClientStartup_h__
8 #define __BeaconClientStartup_h__
9 
10 namespace beacon
11 {
12 
13 /**************************************************************************//**
14  @brief Client Node interface to Beacon
15 
16  @ingroup beacon
17 *//***************************************************************************/
18 class FE_DL_EXPORT BeaconClientStartup : virtual public BeaconClient
19 {
20 public:
21  virtual bool startup(const char *fileName) override;
22 };
23 
24 } // namespace beacon
25 
26 #endif // __BeaconClientStartup_h__
Client Node interface to Beacon.
Definition: BeaconClientStartup.h:18
Definition: BeaconClient.cc:16