/* cocoa_bridge.h * * This code was taken directly from: * https://forum.qt.io/topic/82609/remove-native-mac-menu-items-such-as-show-tab-bar * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef COCOABRIDGE_H #define COCOABRIDGE_H class CocoaBridge { CocoaBridge() {} public: static void cleanOSGeneratedMenuItems(); }; #endif // COCOABRIDGE_H /* * Editor modelines * * Local Variables: * c-basic-offset: 4 * tab-width: 8 * indent-tabs-mode: nil * End: * * ex: set shiftwidth=4 tabstop=8 expandtab: * :indentSize=4:tabSize=8:noTabs=true: */