Changeset 5074 in ntrip
- Timestamp:
- Mar 30, 2013, 11:56:33 AM (12 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/app.cpp
r5073 r5074 28 28 t_app::t_app(int& argc, char* argv[], bool GUIenabled) : 29 29 QApplication(argc, argv, GUIenabled) { 30 BNC_CORE = new t_bncCore( argc, argv,GUIenabled);30 BNC_CORE = new t_bncCore(GUIenabled); 31 31 } 32 32 -
trunk/BNC/src/bnccore.cpp
r5072 r5074 58 58 // Constructor 59 59 //////////////////////////////////////////////////////////////////////////// 60 t_bncCore::t_bncCore( int& argc, char* argv[],bool GUIenabled) {60 t_bncCore::t_bncCore(bool GUIenabled) { 61 61 _GUIenabled = GUIenabled; 62 62 _logFileFlag = 0; -
trunk/BNC/src/bnccore.h
r5072 r5074 44 44 public: 45 45 enum e_mode {interactive, nonInteractive, batchPostProcessing}; 46 t_bncCore( int& argc, char* argv[],bool GUIenabled);46 t_bncCore(bool GUIenabled); 47 47 virtual ~t_bncCore(); 48 48 e_mode mode() const {return _mode;}
Note:
See TracChangeset
for help on using the changeset viewer.