JAPAn
Just Another Parity Analyzer
Loading...
Searching...
No Matches
VQwDataserver Class Reference

Abstract base for data server implementations. More...

#include <VQwDataserver.h>

+ Inheritance diagram for VQwDataserver:
+ Collaboration diagram for VQwDataserver:

Public Member Functions

 VQwDataserver (const char *name)
 
virtual void NextEvent ()
 
- Public Member Functions inherited from VQwSystem
 VQwSystem (const char *name)
 
virtual ~VQwSystem ()
 

Private Member Functions

VQwDataserveroperator= (const VQwDataserver &value)
 

Detailed Description

Abstract base for data server implementations.

Provides the interface for data server classes that handle external data communication and publishing. Extends VQwSystem with server-specific functionality for data distribution and client management.

Definition at line 22 of file VQwDataserver.h.

Constructor & Destructor Documentation

◆ VQwDataserver()

VQwDataserver::VQwDataserver ( const char * name)
inline

Definition at line 33 of file VQwDataserver.h.

33: VQwSystem (name) { };
VQwSystem(const char *name)
Definition VQwSystem.h:22

References VQwSystem::VQwSystem().

Referenced by operator=().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Function Documentation

◆ NextEvent()

virtual void VQwDataserver::NextEvent ( )
inlinevirtual

Definition at line 35 of file VQwDataserver.h.

35 {
36 std::cout << "Error: Not implemented!" << std::endl;
37 return;
38 };

◆ operator=()

VQwDataserver & VQwDataserver::operator= ( const VQwDataserver & value)
inlineprivate

Definition at line 25 of file VQwDataserver.h.

25 {
26 if (this != &value) {
27 // Private assignment operator - no implementation needed
28 }
29 return *this;
30 };

References VQwDataserver().

+ Here is the call graph for this function:

The documentation for this class was generated from the following file: