Changeset b57a3ee in mainline for uspace/lib/cpp/include/__bits/io


Ignore:
Timestamp:
2018-07-05T21:41:24Z (7 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c735afb
Parents:
4f461384
git-author:
Dzejrou <dzejrou@…> (2018-06-25 16:58:08)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
Message:

cpp: refactored the library layout, everything from the impl directory was moved to the bits directory for the sake of consistency, updated copyright notices and include guards

Location:
uspace/lib/cpp/include/__bits/io
Files:
11 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/__bits/io/fstream.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_FSTREAM
    30 #define LIBCPP_FSTREAM
     29#ifndef LIBCPP_BITS_IO_FSTREAM
     30#define LIBCPP_BITS_IO_FSTREAM
    3131
    3232#include <cstdio>
  • uspace/lib/cpp/include/__bits/io/iomanip.hpp

    r4f461384 rb57a3ee  
    2727 */
    2828
    29 #ifndef LIBCPP_IOMANIP
    30 #define LIBCPP_IOMANIP
     29#ifndef LIBCPP_BITS_IO_IOMANIP
     30#define LIBCPP_BITS_IO_IOMANIP
    3131
    32 #include <__bits/iomanip.hpp>
     32#include <__bits/io/iomanip_objs.hpp>
    3333#include <iosfwd>
    3434
  • uspace/lib/cpp/include/__bits/io/iomanip_objs.hpp

    r4f461384 rb57a3ee  
    2727 */
    2828
    29 #ifndef LIBCPP_BITS_IOMANIP
    30 #define LIBCPP_BITS_IOMANIP
     29#ifndef LIBCPP_BITS_IO_IOMANIP_OBJS
     30#define LIBCPP_BITS_IO_IOMANIP_OBJS
    3131
    3232#include <ios>
     
    5656        Manipulator manipulator;
    5757    };
     58
    5859    template<class Char, class Traits, class Manipulator>
    5960    basic_ostream<Char, Traits>& operator<<(
  • uspace/lib/cpp/include/__bits/io/ios.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_IOS
    30 #define LIBCPP_IOS
    31 
     29#ifndef LIBCPP_BITS_IO_IOS
     30#define LIBCPP_BITS_IO_IOS
     31
     32#include <__bits/locale/locale.hpp>
     33#include <__bits/locale/ctype.hpp>
    3234#include <cstdlib>
    33 #include <__bits/locale.hpp>
    34 #include <__bits/locale/ctype.hpp>
    3535#include <iosfwd>
    3636#include <system_error>
  • uspace/lib/cpp/include/__bits/io/iosfwd.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_IOSFWD
    30 #define LIBCPP_IOSFWD
     29#ifndef LIBCPP_BITS_IO_IOSFWD
     30#define LIBCPP_BITS_IO_IOSFWD
    3131
    3232namespace std
  • uspace/lib/cpp/include/__bits/io/iostream.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_IOSTREAM
    30 #define LIBCPP_IOSTREAM
     29#ifndef LIBCPP_BITS_IO_IOSTREAM
     30#define LIBCPP_BITS_IO_IOSTREAM
    3131
    3232#include <ios>
  • uspace/lib/cpp/include/__bits/io/istream.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_ISTREAM
    30 #define LIBCPP_ISTREAM
     29#ifndef LIBCPP_BITS_IO_ISTREAM
     30#define LIBCPP_BITS_IO_ISTREAM
    3131
    3232#include <ios>
  • uspace/lib/cpp/include/__bits/io/ostream.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_OSTREAM
    30 #define LIBCPP_OSTREAM
     29#ifndef LIBCPP_BITS_IO_OSTREAM
     30#define LIBCPP_BITS_IO_OSTREAM
    3131
    3232#include <ios>
  • uspace/lib/cpp/include/__bits/io/sstream.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_SSTREAM
    30 #define LIBCPP_SSTREAM
     29#ifndef LIBCPP_BITS_IO_SSTREAM
     30#define LIBCPP_BITS_IO_SSTREAM
    3131
    3232#include <ios>
  • uspace/lib/cpp/include/__bits/io/streambuf.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_STREAMBUF
    30 #define LIBCPP_STREAMBUF
     29#ifndef LIBCPP_BITS_IO_STREAMBUF
     30#define LIBCPP_BITS_IO_STREAMBUF
    3131
    3232#include <ios>
  • uspace/lib/cpp/include/__bits/io/streambufs.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_STREAMBUFS
    30 #define LIBCPP_STREAMBUFS
     29#ifndef LIBCPP_BITS_IO_STREAMBUFS
     30#define LIBCPP_BITS_IO_STREAMBUFS
    3131
    3232#include <iosfwd>
Note: See TracChangeset for help on using the changeset viewer.