Fixed centering prior to sweep operation
[pspp] / src / expressions / public.h
index f366cfa5675a602c0c722519b0c2b7f8e79ed65e..9a90cef70e8d72f1b12522d7c8fd3c17c57539e2 100644 (file)
@@ -14,8 +14,8 @@
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA. */
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA. */
 
 #if !expr_h
 #define expr_h 1
@@ -33,9 +33,12 @@ enum expr_type
 struct dictionary;
 struct expression;
 struct ccase;
+struct pool;
 union value;
 
 struct expression *expr_parse (struct dictionary *, enum expr_type);
+struct expression *expr_parse_pool (struct pool *,
+                                    struct dictionary *, enum expr_type);
 void expr_free (struct expression *);
 
 double expr_evaluate_num (struct expression *, const struct ccase *,