osl_process.cxx (87d2adbc) osl_process.cxx (22076bf1)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 30 unchanged lines hidden (view full) ---

39#if ( defined WNT ) // Windows
40#include <tools/prewin.h>
41# define WIN32_LEAN_AND_MEAN
42// # include <windows.h>
43# include <tchar.h>
44#include <tools/postwin.h>
45#endif
46
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 30 unchanged lines hidden (view full) ---

39#if ( defined WNT ) // Windows
40#include <tools/prewin.h>
41# define WIN32_LEAN_AND_MEAN
42// # include <windows.h>
43# include <tchar.h>
44#include <tools/postwin.h>
45#endif
46
47#include "rtl/allocator.hxx"
48
49#include <iostream>
50#include <fstream>
51#include <vector>
52#include <algorithm>
53#include <iterator>
54#include <string>
55
56#if defined(WNT) || defined(OS2)

--- 234 unchanged lines hidden (view full) ---

291 CPPUNIT_TEST(osl_joinProcessWithTimeout_without_timeout_failure);
292 CPPUNIT_TEST(osl_joinProcessWithTimeout_infinite);
293 CPPUNIT_TEST(osl_joinProcess);
294 CPPUNIT_TEST_SUITE_END();
295};
296
297//#########################################################
298
47#include <iostream>
48#include <fstream>
49#include <vector>
50#include <algorithm>
51#include <iterator>
52#include <string>
53
54#if defined(WNT) || defined(OS2)

--- 234 unchanged lines hidden (view full) ---

289 CPPUNIT_TEST(osl_joinProcessWithTimeout_without_timeout_failure);
290 CPPUNIT_TEST(osl_joinProcessWithTimeout_infinite);
291 CPPUNIT_TEST(osl_joinProcess);
292 CPPUNIT_TEST_SUITE_END();
293};
294
295//#########################################################
296
299typedef std::vector<std::string, rtl::Allocator<std::string> > string_container_t;
297typedef std::vector<std::string> string_container_t;
300typedef string_container_t::const_iterator string_container_const_iter_t;
301typedef string_container_t::iterator string_container_iter_t;
302
303//#########################################################
304class exclude : public std::unary_function<std::string, bool>
305{
306public:
307 //------------------------------------------------

--- 373 unchanged lines hidden ---
298typedef string_container_t::const_iterator string_container_const_iter_t;
299typedef string_container_t::iterator string_container_iter_t;
300
301//#########################################################
302class exclude : public std::unary_function<std::string, bool>
303{
304public:
305 //------------------------------------------------

--- 373 unchanged lines hidden ---