20 lines
529 B
C++
20 lines
529 B
C++
// Copyright (c) 2019 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_COMMON_DEPRECATE_UTIL_H_
|
|
#define ATOM_COMMON_DEPRECATE_UTIL_H_
|
|
|
|
#include <string>
|
|
|
|
#include "shell/common/node_includes.h"
|
|
|
|
namespace atom {
|
|
|
|
void EmitDeprecationWarning(node::Environment* env,
|
|
const std::string& warning_msg,
|
|
const std::string& warning_type);
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_COMMON_DEPRECATE_UTIL_H_
|