/*
* Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
*/
#ifndef METRIC_H
#define METRIC_H
namespace omnistream {
// Empty abstract interface representing a Metric.
class Metric {
public:
virtual ~Metric() = default;
};
} // namespace omnistream
#endif // METRIC_H