Ignore:
Timestamp:
2000-09-12T13:36:44+12:00 (24 years ago)
Author:
sjboddie
Message:

Got compiling on VC++ 4.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsinstaller/launchApp.h

    r1498 r1539  
    33#include <string>
    44#include <map>
     5
     6// use the standard namespace
     7#if !defined (GSDL_NAMESPACE_BROKEN)
     8#if defined(GSDL_USE_OBJECTSPACE)
     9using namespace ospace::std;
     10#else
    511using namespace std;
     12#endif
     13#endif
    614
    715#include "FilePath.h"
     
    1018
    1119class launchApp
    12 {   private:
    13         _exeMap exeMap;
    14     string  commandline;
    15     public:
    16     launchApp(FilePath &appsrc);
    17     void platformApp(string platform, FilePath &appsrc);
    18     void setCommandLine(string commands);
    19     int run(bool test, int deftest, string prompt, string title, bool wait);
     20{
     21private:
     22  _exeMap exeMap;
     23  string commandline;
     24public:
     25  launchApp(FilePath &appsrc);
     26  void platformApp(string platform, FilePath &appsrc);
     27  void setCommandLine(string commands);
     28  int run(bool test, int deftest, string prompt, string title, bool wait);
    2029};
    2130#endif
Note: See TracChangeset for help on using the changeset viewer.