~zorba-coders/zorba/bug-950621

« back to all changes in this revision

Viewing changes to src/functions/stdlib.cpp

  • Committer: brantmat at ETHZ
  • Date: 2007-10-09 12:58:38 UTC
  • Revision ID: svn-v4:8046edc3-af21-0410-8661-ec7318497eea:trunk/zorba:904
commit of the new directory structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
 *
 
3
 *  $Id: stdlib.cpp,v 1.1 2006/10/09 07:07:59 Paul Pedersen Exp $
 
4
 *
 
5
 *      Copyright 2006-2007 FLWOR Foundation.
 
6
 *
 
7
 *  Author: Paul Pedersen
 
8
 *
 
9
 */
 
10
 
 
11
#include "function_library.h"
 
12
#include "../types/sequence_type.h"
 
13
 
 
14
using namespace std;
 
15
namespace xqp {
 
16
  
 
17
static funtab_entry[] = {
 
18
        { "fun1", fun1, 1, 1, {}, 
 
19
        {},
 
20
        {},
 
21
        {}
 
22
};
 
23
  
 
24
  
 
25
  
 
26
  
 
27
  
 
28
  
 
29
  
 
30
} /* namespace xqp */
 
31