~ubuntu-branches/debian/squeeze/gmsh/squeeze

« back to all changes in this revision

Viewing changes to Fltk/Main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme
  • Date: 2009-09-27 17:36:40 UTC
  • mfrom: (1.4.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090927173640-meoeywl4f5hq5qas
Tags: 2.4.2.dfsg-1
[Christophe Prud'homme]
* New upstream release
  + solver code refactoring
  + better IDE integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#include <string>
7
7
#include "Gmsh.h"
8
8
#include "GmshMessage.h"
 
9
#include "GmshRemote.h"
9
10
#include "FlGui.h"
10
11
#include "menuWindow.h"
11
12
#include "drawContext.h"
14
15
#include "Parser.h"
15
16
#include "OpenFile.h"
16
17
#include "CommandLine.h"
17
 
#include "Solvers.h"
18
18
#include "PluginManager.h"
19
19
#include "GModel.h"
20
20
#include "Field.h"
115
115
  drawContext::global()->draw();
116
116
 
117
117
  // Listen to external solvers
118
 
  if(CTX::instance()->solver.listen) Solver(-1, NULL);
 
118
  if(CTX::instance()->solver.listen)
 
119
    GmshRemote::get(-1)->run("");
119
120
 
120
121
  // loop
121
122
  return FlGui::instance()->run();