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

Abstract base class for analyzer implementations. More...

#include <VQwAnalyzer.h>

+ Inheritance diagram for VQwAnalyzer:
+ Collaboration diagram for VQwAnalyzer:

Public Member Functions

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

Private Member Functions

VQwAnalyzeroperator= (const VQwAnalyzer &value)
 

Detailed Description

Abstract base class for analyzer implementations.

Provides the basic interface for analysis modules that process events or data structures. Derived classes implement specific analysis algorithms.

Definition at line 21 of file VQwAnalyzer.h.

Constructor & Destructor Documentation

◆ VQwAnalyzer()

VQwAnalyzer::VQwAnalyzer ( const char * name)
inline

Definition at line 32 of file VQwAnalyzer.h.

32: 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

◆ operator=()

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

Definition at line 24 of file VQwAnalyzer.h.

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

References VQwAnalyzer().

+ Here is the call graph for this function:

◆ Process()

virtual void VQwAnalyzer::Process ( )
inlinevirtual

Definition at line 40 of file VQwAnalyzer.h.

40 {
41 std::cout << "Error: Not implemented!" << std::endl;
42 return;
43 };

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