File indexing completed on 2024-04-28 07:51:19

0001 /*
0002     KBlackBox - A simple game inspired by an emacs module
0003 
0004     SPDX-FileCopyrightText: 2007 Nicolas Roffet <nicolas-kde@roffet.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #include "kbbitemwithposition.h"
0010 
0011 
0012 
0013 //
0014 // Constructor / Destructor
0015 //
0016 
0017 KBBItemWithPosition::~KBBItemWithPosition()
0018 {
0019 }
0020 
0021 
0022 
0023 //
0024 // Public
0025 //
0026 
0027 void KBBItemWithPosition::cleanDelete()
0028 {
0029     delete this;
0030 }
0031 
0032 
0033 void KBBItemWithPosition::highlight(bool)
0034 {
0035 }
0036 
0037 
0038 void KBBItemWithPosition::highlightBoth(bool)
0039 {
0040 }
0041 
0042 
0043 void KBBItemWithPosition::setPause(bool)
0044 {
0045 }