Added abstract factory to create casefiles. Updated procedures to use
[pspp-builds.git] / src / ui / gui / flexifile-factory.c
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2006 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17    02110-1301, USA. */
18
19 #include <stdlib.h>
20 #include <libpspp/alloc.h>
21 #include <libpspp/compiler.h>
22 #include "flexifile-factory.h"
23 #include <ui/flexifile.h>
24 #include <data/casefile-factory.h>
25
26
27 struct flexifile_factory
28  {
29    struct casefile_factory parent;
30  };
31
32
33 static struct casefile *
34 produce_flexifile(struct casefile_factory *this UNUSED, size_t value_cnt)
35 {
36   struct casefile *ff =  flexifile_create (value_cnt);
37
38   return ff;
39 }
40
41
42 struct casefile_factory *
43 flexifile_factory_create (void)
44 {
45   struct flexifile_factory *fact = xzalloc (sizeof (*fact));
46
47   fact->parent.create_casefile = produce_flexifile;
48
49   return (struct casefile_factory *) fact;
50 }
51
52
53 void
54 flexifile_factory_destroy (struct casefile_factory *factory)
55 {
56   free (factory);
57 }