Mercurial > hg > octave-lyh
comparison src/oct-errno.h @ 11057:4d9f310b32bb
replace Octave_map->octave_map in oct-errno
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 30 Sep 2010 08:04:37 +0200 |
parents | cd96d29c5efa |
children | fd0a3ac60b0e |
comparison
equal
deleted
inserted
replaced
11056:4bec51eb58e2 | 11057:4d9f310b32bb |
---|---|
43 | 43 |
44 static bool instance_ok (void); | 44 static bool instance_ok (void); |
45 | 45 |
46 static int lookup (const std::string& name); | 46 static int lookup (const std::string& name); |
47 | 47 |
48 static Octave_map list (void); | 48 static octave_scalar_map list (void); |
49 | 49 |
50 static int get (void) { return errno; } | 50 static int get (void) { return errno; } |
51 | 51 |
52 static int set (int val) | 52 static int set (int val) |
53 { | 53 { |
62 | 62 |
63 static octave_errno *instance; | 63 static octave_errno *instance; |
64 | 64 |
65 int do_lookup (const std::string& name); | 65 int do_lookup (const std::string& name); |
66 | 66 |
67 Octave_map do_list (void); | 67 octave_scalar_map do_list (void); |
68 }; | 68 }; |
69 | 69 |
70 #endif | 70 #endif |