/* * Copyright 2021, Jaidyn Levesque * All rights reserved. Distributed under the terms of the MIT license. */ #ifndef _ACCOUNT_MENU_ITEM_H #define _ACCOUNT_MENU_ITEM_H #include class AccountMenuItem : public BMenuItem { public: AccountMenuItem(const char* label, BMessage* msg); virtual void SetMarked(bool mark); }; #endif // _ACCOUNT_MENU_ITEM_H