Changeset 15164


Ignore:
Timestamp:
05/30/13 10:25:52 (12 years ago)
Author:
Mathieu Morlighem
Message:

BUG: missing include files

Location:
issm/trunk-jpl/src/c
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/Shp2Expx/Shp2Expx.cpp

    r15104 r15164  
    66#include "../../shared/shared.h"
    77#include "../../toolkits/toolkits.h"
     8#include "../../kml/kmlobjects.h"
    89
    910int Shp2Expx(char* filshp,char* filexp){
     
    562563
    563564                else {
    564                         _printf_(,"Warning -- Shape " << i << " of type \"" <<SHPTypeName( pstype[i] ) << "\" will be ignored.\n\n");
     565                        _printf_("Warning -- Shape " << i << " of type \"" <<SHPTypeName( pstype[i] ) << "\" will be ignored.\n\n");
    565566                }
    566567        }
  • issm/trunk-jpl/src/c/modules/Shp2Kmlx/Shp2Kmlx.cpp

    r15104 r15164  
    66#include "../../shared/shared.h"
    77#include "../../toolkits/toolkits.h"
     8#include "../../kml/kmlobjects.h"
    89
    910int Shp2Kmlx(char* filshp,char* filkml,
  • issm/trunk-jpl/src/c/shared/String/ApiPrintf.cpp

    r15091 r15164  
    1010
    1111#include <stdio.h>
    12 #include <string.h>
    13 #include <ctype.h>
    1412
    15 void ApiPrintf(char* format, const char* string){
    16         printf(format,string);
    17 
     13void ApiPrintf(const char* string){
     14        printf(string);
    1815}
  • issm/trunk-jpl/src/c/shared/String/sharedstring.h

    r15091 r15164  
    1212#endif
    1313
    14 void ApiPrintf(char* format,const char* string);
     14void ApiPrintf(const char* string);
    1515
    1616#endif //ifndef _SHAREDSTRING_H_
  • issm/trunk-jpl/src/c/shared/io/Print/PrintfFunction.cpp

    r15099 r15164  
    3030                __android_log_print(ANDROID_LOG_INFO, "Native",message.c_str());
    3131                #else
    32                 ApiPrintf("%s",message.c_str());
     32                ApiPrintf(message.c_str());
    3333                #endif
    3434        }
     
    4040        __android_log_print(ANDROID_LOG_INFO, "Native",message.c_str());
    4141        #else
    42         ApiPrintf("%s",message.c_str());
     42        ApiPrintf(message.c_str());
    4343        #endif
    4444
Note: See TracChangeset for help on using the changeset viewer.