1 /* 2 * Copyright 2008 Ralf Schülke, ralf.schuelke@googlemail.com. 3 * Copyright 2014 Haiku, Inc. All rights reserved. 4 * 5 * Distributed under the terms of the MIT License. 6 * 7 * Authors: 8 * Ralf Schülke, ralf.schuelke@googlemail.com 9 * John Scipione, jscipione@gmail.com 10 */ 11 #ifndef PAIRS_BUTTON_H 12 #define PAIRS_BUTTON_H 13 14 15 #include <Button.h> 16 17 18 class PairsButton : public BButton { 19 public: 20 PairsButton(int32 x, int32 y, int32 size, 21 BMessage* message); 22 virtual ~PairsButton(); 23 }; 24 25 26 #endif // PAIRS_BUTTON_H 27