comparison src/pt-fvc-base.h @ 1755:3a9462b655f1

[project @ 1996-01-22 04:47:22 by jwe]
author jwe
date Mon, 22 Jan 1996 04:47:22 +0000
parents a02f140ed897
children effa9400766f
comparison
equal deleted inserted replaced
1754:5f1938919fdc 1755:3a9462b655f1
30 30
31 #include <ctime> 31 #include <ctime>
32 32
33 class ostream; 33 class ostream;
34 34
35 #include <string>
36
35 #include <SLList.h> 37 #include <SLList.h>
36 38
37 class tree_constant; 39 class tree_constant;
38 class Octave_object; 40 class Octave_object;
39 41
50 ~tree_fvc (void) { } 52 ~tree_fvc (void) { }
51 53
52 virtual tree_constant assign (tree_constant& t, 54 virtual tree_constant assign (tree_constant& t,
53 const Octave_object& args); 55 const Octave_object& args);
54 56
55 virtual char *name (void) const; 57 virtual string name (void) const;
56 58
57 virtual void bump_value (tree_expression::type); 59 virtual void bump_value (tree_expression::type);
58 60
59 virtual tree_constant lookup_map_element (SLList<char*>& list, 61 virtual tree_constant lookup_map_element (SLList<string>& list,
60 int insert = 0, int silent = 0); 62 int insert = 0, int silent = 0);
61 63
62 virtual char *fcn_file_name (void) 64 virtual string fcn_file_name (void)
63 { return 0; } 65 { return string (); }
64 66
65 virtual time_t time_parsed (void); 67 virtual time_t time_parsed (void);
66 68
67 virtual int is_system_fcn_file (void) const 69 virtual int is_system_fcn_file (void) const
68 { return 0; } 70 { return 0; }