VirtualBox

source: vbox/trunk/include/iprt/cpp/utils.h@ 30670

Last change on this file since 30670 was 30670, checked in by vboxsync, 15 years ago

Main: COM header cleanup (remove obscure and unused templates)

  • Property svn:eol-style set to native
File size: 2.5 KB
Line 
1/** @file
2 * IPRT - C++ Utilities (useful templates, defines and such).
3 */
4
5/*
6 * Copyright (C) 2006-2007 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_cpputils_h
27#define ___iprt_cpputils_h
28
29/** @defgroup grp_rt_cpputils C++ Utilities
30 * @ingroup grp_rt
31 * @{
32 */
33
34/**
35 * Shortcut to |const_cast<C &>()| that automatically derives the correct
36 * type (class) for the const_cast template's argument from its own argument.
37 * Can be used to temporarily cancel the |const| modifier on the left-hand side
38 * of assignment expressions, like this:
39 * @code
40 * const Class that;
41 * ...
42 * unconst (that) = some_value;
43 * @endcode
44 */
45template <class C>
46inline C& unconst(const C &that) { return const_cast<C&>(that); }
47
48
49/**
50 * Shortcut to |const_cast<C *>()| that automatically derives the correct
51 * type (class) for the const_cast template's argument from its own argument.
52 * Can be used to temporarily cancel the |const| modifier on the left-hand side
53 * of assignment expressions, like this:
54 * @code
55 * const Class *that;
56 * ...
57 * unconst (that) = some_value;
58 * @endcode
59 */
60template <class C>
61inline C* unconst(const C *that) { return const_cast<C*>(that); }
62
63
64namespace iprt
65{
66/**
67 * A simple class used to prevent copying and assignment. Inherit from this
68 * class in order to prevent automatic generation of the copy constructor
69 * and assignment operator in your class.
70 */
71class non_copyable
72{
73protected:
74 non_copyable() {}
75 ~non_copyable() {}
76private:
77 non_copyable(non_copyable const&);
78 non_copyable const &operator=(non_copyable const&);
79};
80
81} // namespace iprt
82
83/** @} */
84
85#endif // ___iprt_cpputils_h
86
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette