blob: 1adf3d014f402a63d0a15f15a9110935f3a87cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
#ifndef SEARCH_H_423905762345342526587
#define SEARCH_H_423905762345342526587
#include <wx+/grid.h>
namespace zen
{
std::pair<const Grid*, ptrdiff_t> findGridMatch(const Grid& grid1, const Grid& grid2, const wxString& searchString, bool respectCase);
//returns (grid/row) where the value was found, (nullptr, -1) if not found
}
#endif //SEARCH_H_423905762345342526587
|