Replace stdlib.hpp with cstdlib.hpp;

Replace stdio.hpp with cstdio.hpp;
Replace time.hpp with systime.hpp;
This commit is contained in:
vng 2011-06-26 00:18:14 +03:00 committed by Alex Zolotarev
parent bb666aaa3d
commit c58c4ec772
19 changed files with 32 additions and 76 deletions

View file

@ -4,7 +4,7 @@
#include "../std/target_os.hpp"
#include "../std/windows.hpp"
#include "../std/stdio.hpp"
#include "../std/cstdio.hpp"
class MemoryMappedFile
{

View file

@ -1,7 +1,7 @@
#include "timer.hpp"
#include "../std/target_os.hpp"
#include "../std/time.hpp"
#include "../std/systime.hpp"
#include "../std/ctime.hpp"
#include "../std/stdint.hpp"

View file

@ -32,4 +32,4 @@
#endif
#include "../../std/stdio.hpp"
#include "../../std/cstdio.hpp"

View file

@ -1,7 +1,7 @@
#include "timsort.hpp"
#include "../../std/memcpy.hpp"
#include "../../std/stdlib.hpp"
#include "../../std/cstdlib.hpp"
typedef int cmpFunc(const void *, const void *);

View file

@ -4,15 +4,7 @@
#include "../indexer/classificator.hpp"
#include "../indexer/drawing_rules.hpp"
//#include "../indexer/scales.hpp"
//#include "../coding/reader.hpp"
//#include "../base/logging.hpp"
//#include "../std/stdio.hpp"
//#include "../base/start_mem_debug.hpp"
#include "../base/start_mem_debug.hpp"
namespace classificator

View file

@ -2,7 +2,7 @@
#include "../coding/parse_xml.hpp"
#include "../coding/reader.hpp"
#include "../std/stdio.hpp"
#include "../std/cstdio.hpp"
#include "../std/algorithm.hpp"

View file

@ -6,7 +6,7 @@
#include "../base/assert.hpp"
#include "../base/string_utils.hpp"
#include "../std/stdio.hpp"
#include "../std/cstdio.hpp"
#include "../base/start_mem_debug.hpp"

View file

@ -4,8 +4,10 @@
#include "../../defines.hpp"
#include "../../std/stdio.hpp"
#include "../../coding/writer.hpp"
#include "../../coding/internal/file_data.hpp"
#include "../../base/logging.hpp"
#include "../../base/start_mem_debug.hpp"
@ -14,17 +16,25 @@ char const * TEST_FILE_NAME = "some_temporary_unit_test_file.tmp";
UNIT_TEST(WritableDir)
{
string const path = GetPlatform().WritableDir() + TEST_FILE_NAME;
FILE * f = fopen(path.c_str(), "w");
TEST_NOT_EQUAL(f, 0, ("Can't create file", path));
if (f)
fclose(f);
remove(path.c_str());
try
{
my::FileData f(path, my::FileData::OP_WRITE_TRUNCATE);
}
catch (Writer::OpenException const &)
{
LOG(LCRITICAL, ("Can't create file"));
return;
}
my::DeleteFileX(path);
}
UNIT_TEST(WritablePathForFile)
{
string const p1 = GetPlatform().WritableDir() + TEST_FILE_NAME;
string const p2 = GetPlatform().WritablePathForFile(TEST_FILE_NAME);
Platform & pl = GetPlatform();
string const p1 = pl.WritableDir() + TEST_FILE_NAME;
string const p2 = pl.WritablePathForFile(TEST_FILE_NAME);
TEST_EQUAL(p1, p2, ());
}
@ -35,7 +45,7 @@ UNIT_TEST(ReadPathForFile)
Platform & p = GetPlatform();
for (size_t i = 0; i < ARRAY_SIZE(arr); ++i)
{
TEST_GREATER( p.ReadPathForFile(arr[i]).size(), 0, ("File should exist!") );
TEST_GREATER(p.ReadPathForFile(arr[i]).size(), 0, ("File should exist!"));
}
bool wasException = false;
@ -47,7 +57,7 @@ UNIT_TEST(ReadPathForFile)
{
wasException = true;
}
TEST( wasException, ());
TEST_EQUAL(wasException, true, ());
}
UNIT_TEST(GetFilesInDir)

View file

@ -17,7 +17,7 @@
#define MUI_LANGUAGE_NAME 0x8
#elif defined(OMIM_OS_LINUX)
#include "../std/stdlib.hpp"
#include "../std/cstdlib.hpp"
#elif defined(OMIM_OS_ANDROID)
/// @TODO

View file

@ -7,7 +7,7 @@
#include "../base/logging.hpp"
#include "../std/windows.hpp"
#include "../std/stdio.hpp"
#include "../std/cstdio.hpp"
#include <winsock2.h>
#include <iphlpapi.h>

View file

@ -11,7 +11,7 @@
#include "../version/version.hpp"
#include "../std/stdio.hpp"
#include "../std/cstdio.hpp"
#include <QtGui/QApplication>

View file

@ -5,7 +5,7 @@
#undef new
#endif
#include <stdio.h>
#include <cstdio>
#ifdef DEBUG_NEW
#define new DEBUG_NEW

View file

@ -1 +0,0 @@
// ADD PREDEFINED MACROS HERE!

View file

@ -1 +0,0 @@
[General]

View file

@ -1,32 +0,0 @@
algorithm.hpp
array.hpp
auto_ptr.hpp
bind.hpp
cstdlib.hpp
cmath.hpp
exception.hpp
fstream.hpp
function.hpp
ios.hpp
iostream.hpp
iterator.hpp
limits.hpp
list.hpp
map.hpp
numeric.hpp
queue.hpp
scoped_array.hpp
scoped_ptr.hpp
set.hpp
shared_ptr.hpp
sstream.hpp
string.hpp
tuple.hpp
type_traits.hpp
typeinfo.hpp
unordered_map.hpp
unordered_set.hpp
utility.hpp
vector.hpp
cstdio.hpp
common_defines.hpp

View file

View file

@ -1,12 +0,0 @@
#pragma once
#include "common_defines.hpp"
#ifdef new
#undef new
#endif
#include <stdlib.h>
#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif

View file

@ -7,7 +7,7 @@
#include "../../std/set.hpp"
#include "../../std/string.hpp"
#include "../../std/vector.hpp"
#include "../../std/stdio.hpp"
#include "../../std/cstdio.hpp"
namespace
{