FreeStick  0.3
Cross Platform Open Sorce Joystick Lib
EENullStream.h
Go to the documentation of this file.
1 /*
2 * EEStream.h
3 *
4 *
5 * Epee Engine
6 * Created by Alan Uthoff on 3/12/06.
7 Copyright (C) 2011
8 
9 This Code is free software; you can redistribute it and/or
10 modify it under the terms of the zlib/libpng License as published
11 by the Free Software Foundation; either
12 version 2.1 of the License, or (at your option) any later version.
13 This software is provided 'as-is', without any express or implied warranty.
14 
15 In no event will the authors be held liable for any damages arising from the use of this software.
16 
17 Permission is granted to anyone to use this software for any purpose,
18 including commercial applications, and to alter it and redistribute
19 it freely, subject to the following restrictions:
20 
21 1. The origin of this software must not be misrepresented;
22 you must not claim that you wrote the original software.
23 If you use this software in a product, an acknowledgment
24 in the product documentation would be appreciated but is not required.
25 
26 2. Altered source versions must be plainly marked as such,
27 and must not be misrepresented as being the original software.
28 
29 3. This notice may not be removed or altered from any source distribution.
30 
31 
32 */
33 
34 #ifndef EENULLSTREAM_H
35 #define EENULLSTREAM_H
36 #include "EEStream.h"
37 class EENullStream : public EEStream
38 {
39 public:
40  EENullStream();
41 private:
42  EENullStream(std::ostream & _streamToUse);
43 };
44 
45 
46 
47 #endif
Definition: EENullStream.h:37
EENullStream()
Definition: EENullStream.cpp:35
Definition: EEStream.h:40