Compilation: fix up tools includes.
[gnumeric.git] / src / tools / analysis-one-mean-test.h
blob781fdea1b8de3f8815147ba966f8092f4eda1add
1 /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * analysis-one-mean-test.h:
5 * Author:
6 * Andreas J. Guelzow <aguelzow@pyrshep.ca>
8 * (C) Copyright 2012 by Andreas J. Guelzow <aguelzow@pyrshep.ca>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses/>.
26 #ifndef ANALYSIS_ONE_MEAN_TEST_H
27 #define ANALYSIS_ONE_MEAN_TEST_H
29 #include "gnumeric.h"
30 #include "numbers.h"
31 #include <tools/dao.h>
32 #include "tools.h"
33 #include "analysis-tools.h"
34 #include "sheet.h"
36 typedef struct {
37 analysis_tools_data_generic_t base;
38 gnm_float mean;
39 gnm_float alpha;
40 } analysis_tools_data_one_mean_test_t;
42 gboolean analysis_tool_one_mean_test_engine (GOCmdContext *gcc,
43 data_analysis_output_t *dao,
44 gpointer specs,
45 analysis_tool_engine_t selector,
46 gpointer result);
48 #endif