Mercurial > hg > octave-nkf
annotate src/octave-value/ov-base-int.h @ 15116:3d7a7ae53bbf gui
Further integration of GUI in the build system.
* Makefile.am (SUBDIRS): Add gui conditionally.
* configure.ac (AC_CHECK_PROGS(rcc)): Check for new program.
(AC_ARG_ENABLE(gui): New configure flag.
* gui/src/Makefile.am: Add support for resource file compilation.
Use nodist_XXX_SOURCES for MOC files.
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Sun, 05 Aug 2012 20:04:53 +0100 |
parents | 46b19589b593 |
children |
rev | line source |
---|---|
4903 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11586
diff
changeset
|
3 Copyright (C) 2004-2012 John W. Eaton |
4903 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
4903 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
4903 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_base_int_matrix_h) | |
24 #define octave_base_int_matrix_h 1 | |
25 | |
26 #include <cstdlib> | |
27 | |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
28 #include <iosfwd> |
4903 | 29 #include <string> |
30 | |
31 #include "mx-base.h" | |
32 #include "oct-alloc.h" | |
33 #include "str-vec.h" | |
34 | |
35 #include "error.h" | |
36 #include "ov-base.h" | |
37 #include "ov-base-mat.h" | |
38 #include "ov-base-scalar.h" | |
39 #include "ov-typeinfo.h" | |
40 | |
41 // base int matrix values. | |
42 | |
43 template <class T> | |
44 class | |
45 octave_base_int_matrix : public octave_base_matrix<T> | |
46 { | |
47 public: | |
48 | |
49 octave_base_int_matrix (void) : octave_base_matrix<T> () { } | |
50 | |
51 octave_base_int_matrix (const T& nda) : octave_base_matrix<T> (nda) { } | |
52 | |
53 ~octave_base_int_matrix (void) { } | |
54 | |
5759 | 55 octave_base_value *clone (void) const { return new octave_base_int_matrix (*this); } |
56 octave_base_value *empty_clone (void) const { return new octave_base_int_matrix (); } | |
4903 | 57 |
5759 | 58 octave_base_value *try_narrowing_conversion (void); |
4903 | 59 |
60 bool is_real_type (void) const { return true; } | |
61 | |
62 // void increment (void) { matrix += 1; } | |
63 | |
64 // void decrement (void) { matrix -= 1; } | |
65 | |
66 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; | |
67 | |
5992 | 68 octave_value convert_to_str_internal (bool, bool, char type) const; |
69 | |
6974 | 70 bool save_ascii (std::ostream& os); |
4903 | 71 |
72 bool load_ascii (std::istream& is); | |
73 | |
4917 | 74 bool save_binary (std::ostream& os, bool& ); |
4903 | 75 |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
76 bool load_binary (std::istream& is, bool swap, |
10313 | 77 oct_mach_info::float_format ); |
4903 | 78 |
79 #if defined (HAVE_HDF5) | |
4917 | 80 bool save_hdf5 (hid_t loc_id, const char *name, bool); |
4903 | 81 |
9881
b3089dba88bf
Remove HDF5 cruft for older versions of HDF5
Kacper Kowalik
parents:
8950
diff
changeset
|
82 bool load_hdf5 (hid_t loc_id, const char *name); |
4903 | 83 #endif |
84 }; | |
85 | |
86 // base int scalar values. | |
87 | |
88 template <class T> | |
89 class | |
90 octave_base_int_scalar : public octave_base_scalar<T> | |
91 { | |
92 public: | |
93 | |
94 octave_base_int_scalar (void) : octave_base_scalar<T> () { } | |
95 | |
96 octave_base_int_scalar (const T& s) : octave_base_scalar<T> (s) { } | |
97 | |
98 ~octave_base_int_scalar (void) { } | |
99 | |
5759 | 100 octave_base_value *clone (void) const { return new octave_base_int_scalar (*this); } |
101 octave_base_value *empty_clone (void) const { return new octave_base_int_scalar (); } | |
4903 | 102 |
5759 | 103 octave_base_value *try_narrowing_conversion (void) { return 0; } |
4903 | 104 |
105 bool is_real_type (void) const { return true; } | |
106 | |
107 // void increment (void) { scalar += 1; } | |
108 | |
109 // void decrement (void) { scalar -= 1; } | |
110 | |
5992 | 111 octave_value convert_to_str_internal (bool, bool, char type) const; |
112 | |
6974 | 113 bool save_ascii (std::ostream& os); |
4903 | 114 |
115 bool load_ascii (std::istream& is); | |
116 | |
4917 | 117 bool save_binary (std::ostream& os, bool& ); |
4903 | 118 |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
119 bool load_binary (std::istream& is, bool swap, |
10313 | 120 oct_mach_info::float_format ); |
4903 | 121 |
122 #if defined (HAVE_HDF5) | |
4917 | 123 bool save_hdf5 (hid_t loc_id, const char *name, bool ); |
4903 | 124 |
9881
b3089dba88bf
Remove HDF5 cruft for older versions of HDF5
Kacper Kowalik
parents:
8950
diff
changeset
|
125 bool load_hdf5 (hid_t loc_id, const char *name); |
4903 | 126 #endif |
127 }; | |
128 | |
129 #endif |