chromium/third_party/content_analysis_sdk/src/agent/src/agent_posix.h

// Copyright 2022 The Chromium Authors.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_ANALYSIS_SRC_AGENT_POSIX_H_
#define CONTENT_ANALYSIS_SRC_AGENT_POSIX_H_

#include "agent_base.h"

namespace content_analysis {
namespace sdk {

// Agent implementaton for linux.
class AgentPosix : public AgentBase {};

}  // namespace sdk
}  // namespace content_analysis

#endif  // CONTENT_ANALYSIS_SRC_AGENT_POSIX_H_