Api.h
1 /*
2  * Copyright (C) 2005-2013 by Dr. Marc Boris Duerner
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * As a special exception, you may use this file as part of a free
10  * software library without restriction. Specifically, if other files
11  * instantiate templates or use macros or inline functions from this
12  * file, or you compile this file and link it with other files to
13  * produce an executable, this file does not by itself cause the
14  * resulting executable to be covered by the GNU General Public
15  * License. This exception does not however invalidate any other
16  * reasons why the executable file might be covered by the GNU Library
17  * General Public License.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27  */
28 
29 #ifndef PT_SYSTEM_API_H
30 #define PT_SYSTEM_API_H
31 
32 #include <Pt/Api.h>
33 
34 #define PT_SYSTEM_VERSION_MAJOR PT_VERSION_MAJOR
35 #define PT_SYSTEM_VERSION_MINOR PT_VERSION_MINOR
36 #define PT_SYSTEM_VERSION_REVISION PT_VERSION_REVISION
37 #define PT_SYSTEM_VERSION_PRERELEASE PT_VERSION_PRERELEASE
38 
39 #if defined(PT_SYSTEM_API_EXPORT)
40 # define PT_SYSTEM_API PT_EXPORT
41 # else
42 # define PT_SYSTEM_API PT_IMPORT
43 # endif
44 
45 #endif
46 
47 namespace Pt {
48 
59 namespace System {
60 
61  class Application;
62  class Clock;
63  class Condition;
64  class Directory;
65  class EventSource;
66  class EventSink;
67  class EventLoop;
68  class File;
69  class FileDevice;
70  class FileInfo;
71  class IOBuffer;
72  class IODevice;
73  class IOStream;
74  class IStream;
75  class Logger;
76  class LogChannel;
77  class LogMessage;
78  class LogTarget;
79  class MainLoop;
80  class Mutex;
81  class OStream;
82  class Path;
83  class Pipe;
84  class PluginId;
85  class Process;
86  class ReadWriteMutex;
87  class Selectable;
88  class Semaphore;
89  class SerialDevice;
90  class SharedLib;
91  class StreamBuffer;
92  class SystemError;
93  class SpinLock;
94  class Thread;
95  class Timer;
96  class Url;
97 
98 } // namespace System
99 
100 } // namespace Pt
Core module.
Definition: Allocator.h:33