kNetFwd.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* Copyright The kNet Project.
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and
  10. limitations under the License. */
  11. #pragma once
  12. /** @file kNetFwd.h
  13. @brief Forward-declares all common symbols defined by kNet. */
  14. namespace kNet
  15. {
  16. class Clock;
  17. class DataDeserializer;
  18. struct Datagram;
  19. class DataSerializer;
  20. struct EndPoint;
  21. class Event;
  22. class EventArray;
  23. class IMessageHandler;
  24. class INetworkServerListener;
  25. class MessageConnection;
  26. class MessageListParser;
  27. class NetException;
  28. class Network;
  29. class NetworkMessage;
  30. class NetworkServer;
  31. struct OverlappedTransferBuffer;
  32. class PolledTimer;
  33. class SerializationStructCompiler;
  34. class SerializedDataIterator;
  35. class Socket;
  36. class StatsEventHierarchyNode;
  37. class TCPMessageConnection;
  38. class Thread;
  39. class UDPMessageConnection;
  40. }