mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-13 14:36:37 -04:00
21 lines
499 B
C++
21 lines
499 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2014.
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//=======================================================================
|
|
|
|
#ifndef FLAGS_H
|
|
#define FLAGS_H
|
|
|
|
#include <types.hpp>
|
|
|
|
//TODO Rename this namespace
|
|
namespace std {
|
|
|
|
constexpr const size_t OPEN_CREATE = 0x1;
|
|
|
|
}
|
|
|
|
#endif
|