diff src/octave.cc @ 15036:aa1f9e479c6e classdef

octave_value classdef objects * ov-classdef.h, ov-classdef.cc: New files. * octave.cc: Include ov-classdef.h. (octave_main): Call install_classdef. * src/Makefile.am (OV_SRC): Add ov-classdef.cc to the list. (OV_INCLUDES): Add ov-classdef.h to the list.
author Michael Goffioul <michael.goffioul@gmail.com>
date Fri, 27 Jul 2012 16:02:01 -0400
parents be12c85c6ce7
children
line wrap: on
line diff
--- a/src/octave.cc	Fri Jul 27 15:44:11 2012 -0400
+++ b/src/octave.cc	Fri Jul 27 16:02:01 2012 -0400
@@ -62,6 +62,7 @@
 #include "oct-obj.h"
 #include "ops.h"
 #include "ov.h"
+#include "ov-classdef.h"
 #include "ov-range.h"
 #include "toplev.h"
 #include "parse.h"
@@ -682,6 +683,8 @@
 
   install_builtins ();
 
+  install_classdef ();
+
   bool forced_line_editing = false;
 
   bool read_history_file = true;