Changeset 8241


Ignore:
Timestamp:
2004-10-08T12:27:10+13:00 (20 years ago)
Author:
kjdon
Message:

some changes to get it compiling on windows

Location:
trunk/gsdl/src/oaiservr
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/oaiservr/oaiaction.cpp

    r8182 r8241  
    55
    66#include <string>
    7 #include <sstream>
     7#if defined(GSDL_USE_IOS_H)
     8#  if defined(__WIN32__)
     9#    include <strstrea.h> // vc4
     10#  else
     11#    include <strstream.h>
     12#  endif
     13#else
     14#  include <sstream>
     15#endif
    816
    917#include <time.h>
  • trunk/gsdl/src/oaiservr/oaiaction.h

    r8182 r8241  
    22#define _oaiaction_h_
    33// standard c++ includes
    4 #include <ostream.h>
     4//#include <ostream.h>
    55
    66// generic gsdl stuff
  • trunk/gsdl/src/oaiservr/oaidispatcher.h

    r8182 r8241  
    11#include "oaiaction.h"
    22
    3 #include <map.h>
     3#if defined(GSDL_USE_OBJECTSPACE)
     4#  include <ospace\std\map>
     5#elif defined(GSDL_USE_STL_H)
     6#  include <map.h>
     7#else
     8#  include <map>
     9#endif
    410
    511typedef map<text_t, oaiaction *, lttext_t> oaiactionmap;
Note: See TracChangeset for help on using the changeset viewer.