comparison src/graphics.h.in @ 14281:b4d7de953066

Export more required symbols [Win32]. * liboctave/regexp.h (class regexp): Decorate with OCTAVE_API * src/graphics.h.in (gtk_manager::create_instance, gtk_manager::instance): Decorate with OCTINTERP_API.
author Michael Goffioul <michael.goffioul@gmail.com>
date Sun, 29 Jan 2012 12:53:05 +0000
parents 5cc69bafe3b9
children 17de694961f5
comparison
equal deleted inserted replaced
14280:fd8b8f0f68b9 14281:b4d7de953066
2308 gtk_manager (void) 2308 gtk_manager (void)
2309 : dtk ("gnuplot"), available_toolkits (), loaded_toolkits () { } 2309 : dtk ("gnuplot"), available_toolkits (), loaded_toolkits () { }
2310 2310
2311 ~gtk_manager (void) { } 2311 ~gtk_manager (void) { }
2312 2312
2313 static void create_instance (void); 2313 OCTINTERP_API static void create_instance (void);
2314 2314
2315 static bool instance_ok (void) 2315 static bool instance_ok (void)
2316 { 2316 {
2317 bool retval = true; 2317 bool retval = true;
2318 2318
2329 return retval; 2329 return retval;
2330 } 2330 }
2331 2331
2332 static void cleanup_instance (void) { delete instance; instance = 0; } 2332 static void cleanup_instance (void) { delete instance; instance = 0; }
2333 2333
2334 static gtk_manager *instance; 2334 OCTINTERP_API static gtk_manager *instance;
2335 2335
2336 // The name of the default toolkit. 2336 // The name of the default toolkit.
2337 std::string dtk; 2337 std::string dtk;
2338 2338
2339 // The list of toolkits that we know about. 2339 // The list of toolkits that we know about.