Atlas 0.7.0
Networking protocol for the Worldforge system.
Codec.h
1// This file may be redistributed and modified only under the terms of
2// the GNU Lesser General Public License (See COPYING for details).
3// Copyright (C) 2000-2001 Michael Day, Stefanus Du Toit
4
5// $Id$
6
7#ifndef ATLAS_CODEC_H
8#define ATLAS_CODEC_H
9
10#include <Atlas/Bridge.h>
11
12namespace Atlas {
13
27class Codec : public Bridge
28{
29 public:
30
31 ~Codec() override = default;
32
33 virtual void poll() = 0;
34};
35
36} // Atlas namespace
37
38#endif
Definition: Bridge.h:20