chromium/third_party/mediapipe/src/mediapipe/framework/calculator_context.cc

// Copyright 2019 The MediaPipe Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "mediapipe/framework/calculator_context.h"

#include "absl/log/absl_check.h"

namespace mediapipe {

const std::string& CalculatorContext::CalculatorType() const {}

const CalculatorOptions& CalculatorContext::Options() const {}

const std::string& CalculatorContext::NodeName() const {}

int CalculatorContext::NodeId() const {}

Counter* CalculatorContext::GetCounter(const std::string& name) {}

CounterFactory* CalculatorContext::GetCounterFactory() {}

const PacketSet& CalculatorContext::InputSidePackets() const {}

OutputSidePacketSet& CalculatorContext::OutputSidePackets() {}

InputStreamShardSet& CalculatorContext::Inputs() {}

const InputStreamShardSet& CalculatorContext::Inputs() const {}

OutputStreamShardSet& CalculatorContext::Outputs() {}

const OutputStreamShardSet& CalculatorContext::Outputs() const {}

void CalculatorContext::SetOffset(TimestampDiff offset) {}

const InputStreamSet& CalculatorContext::InputStreams() const {}

const OutputStreamSet& CalculatorContext::OutputStreams() const {}

}  // namespace mediapipe