blob: 671b9adff9219a4eb78eeb9d83363470b6dc896f [file] [log] [blame]
// Copyright 2022 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef LIBHWSEC_FRONTEND_FRONTEND_H_
#define LIBHWSEC_FRONTEND_FRONTEND_H_
#include "libhwsec/hwsec_export.h"
namespace hwsec {
class HWSEC_EXPORT Frontend {
public:
virtual ~Frontend() = default;
};
} // namespace hwsec
#endif // LIBHWSEC_FRONTEND_FRONTEND_H_