blob: 9f43a65bc4b848a96fe9dd6a2a24242351e41730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_ORCUS_SPREADSHEET_FORMULA_GLOBAL_HPP
#define INCLUDED_ORCUS_SPREADSHEET_FORMULA_GLOBAL_HPP
#include "orcus/spreadsheet/types.hpp"
#include <cstdlib>
namespace ixion {
struct abs_range_t;
class formula_name_resolver;
}
namespace orcus { namespace spreadsheet {
struct range_t;
/**
* Parse a string representing a 2-dimensional range using the passed name
* resolver, and return an absolute range object. The sheet index will be
* unconditionally set to 0. It returns an invalid range object in case the
* parsing fails.
*
* @param resolver name resolver to use to resolve the range string.
* @param p_ref pointer to the first character of the range string.
* @param n_ref length of the range string.
*
* @return absolute range object, which may be set invalid in case the
* parsing is unsuccessful.
*/
ixion::abs_range_t to_abs_range(
const ixion::formula_name_resolver& resolver, const char* p_ref, size_t n_ref);
ixion::abs_range_t to_abs_range(const range_t& range, sheet_t sheet_pos);
}}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|