GL Studio C++ Runtime API
unhide_globals.h
Go to the documentation of this file.
1/*! \file
2 \brief The DistiUnhideGlobalsDummyClass class.
3
4 \par Copyright Information
5
6 Copyright (c) 2017 by The DiSTI Corporation.<br>
7 11301 Corporate Blvd; Suite 100<br>
8 Orlando, Florida 32817<br>
9 USA<br>
10 <br>
11 All rights reserved.<br>
12
13 This Software contains proprietary trade secrets of DiSTI and may not be
14reproduced, in whole or part, in any form, or by any means of electronic,
15mechanical, or otherwise, without the written permission of DiSTI. Said
16permission may be derived through the purchase of applicable DiSTI product
17licenses which detail the distribution rights of this content and any
18Derivative Works based on this or other copyrighted DiSTI Software.
19
20 NO WARRANTY. THE SOFTWARE IS PROVIDED "AS-IS," WITHOUT WARRANTY OF ANY KIND,
21AND ANY USE OF THIS SOFTWARE PRODUCT IS AT YOUR OWN RISK. TO THE MAXIMUM EXTENT
22PERMITTED BY APPLICABLE LAW, DISTI AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES
23AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
24IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND/OR FITNESS FOR A
25PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE.
26
27 LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,
28IN NO EVENT SHALL DISTI OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
29INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION,
30DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS
31INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR
32INABILITY TO USE THE SOFTWARE, EVEN IF DISTI HAS BEEN ADVISED OF THE POSSIBILITY
33OF SUCH DAMAGES. DISTI'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY SHALL NOT
34EXCEED FIVE DOLLARS (US$5.00).
35
36 The aforementioned terms and restrictions are governed by the laws of the
37State of Florida and the United States of America.
38
39*/
40#ifndef UNHIDE_GLOBALS_H
41#define UNHIDE_GLOBALS_H
42
43/** When an operator (or function) is defined in the disti namespace,
44 * it hides any global versions of it.
45 * In order to make this issue transparent to users of GL Studio this
46 * file brings the global operators into the disti namespace.
47 * If however, the user has not defined any global operators, the using
48 * statement would fail. To avoid this, the dummy operators are created.
49 */
50
51/** This class should never be instantiated. It is for utility only. */
53{
54private:
56};
57/// This will not be defined, since no one will ever call it.
59
60/// This will not be defined, since no one will ever call it.
62
63namespace disti
64{
65/* Unhide global operators for namespace disti*/
66using ::operator>>;
67using ::operator<<;
68} // namespace disti
69
70#endif
Definition: unhide_globals.h:53
Force inclusion of the DirectShow library.
Definition: bmpimage.h:47
void operator<<(DistiUnhideGlobalsDummyClass &, DistiUnhideGlobalsDummyClass &)
This will not be defined, since no one will ever call it.
void operator>>(DistiUnhideGlobalsDummyClass &, DistiUnhideGlobalsDummyClass &)
This will not be defined, since no one will ever call it.