~ubuntu-branches/ubuntu/utopic/pgadmin3/utopic-proposed

« back to all changes in this revision

Viewing changes to pgadmin/include/pgscript/generators/pgsRealGen.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2011-06-07 23:03:54 UTC
  • mfrom: (1.3.1 upstream) (13 sid)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20110607230354-3td4j9y71u4ahcvj
Tags: 1.14.0~beta1-1
* New upstream development release, adding Build-Depends on
  postgresql-server-dev-all >= 117~.
* Add Build-Depends on quilt, (un)patch to debian/rules and patch for fixing
  the include for kwlist.h in pgadmin/db/keywords.c.
* Add pg_config --includedir-server output to CPPFLAGS.
* Remove unrecognized configure options: --with-wx-config,
  --with-pgsql-include, --enable-gtk2, --enable-unicode.
* Clean up manually the files that are left behind after the broken
  distclean.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//////////////////////////////////////////////////////////////////////////
2
2
//
3
3
// pgScript - PostgreSQL Tools
4
 
// 
5
 
// Copyright (C) 2002 - 2010, The pgAdmin Development Team
 
4
//
 
5
// Copyright (C) 2002 - 2011, The pgAdmin Development Team
6
6
// This software is released under the PostgreSQL Licence
7
7
//
8
8
//////////////////////////////////////////////////////////////////////////
37
37
        /**
38
38
         * Builds a new real number generator. Precision cannot be greater that 255.
39
39
         */
40
 
        pgsRealGen(const MAPM & min, const MAPM & max, const UCHAR & precision,
41
 
                        const bool & sequence = false, const long & seed = wxDateTime::GetTimeNow());
 
40
        pgsRealGen(const MAPM &min, const MAPM &max, const UCHAR &precision,
 
41
                   const bool &sequence = false, const long &seed = wxDateTime::GetTimeNow());
42
42
 
43
43
        bool is_sequence() const;
44
44
 
45
45
        virtual wxString random();
46
46
 
47
47
        virtual ~pgsRealGen();
48
 
        
49
 
        virtual pgsRealGen * clone();
 
48
 
 
49
        virtual pgsRealGen *clone();
50
50
 
51
51
        /* pgsRealGen & operator =(const pgsRealGen & that); */
52
52