mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-25 03:53:18 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
18 lines
304 B
C++
18 lines
304 B
C++
#ifndef IINTERFACE_H
|
|
#define IINTERFACE_H
|
|
|
|
#include "common.h"
|
|
|
|
//! Base class of interfaces
|
|
/*!
|
|
This is the base class of all interface classes. An interface class has
|
|
only pure virtual methods.
|
|
*/
|
|
class IInterface {
|
|
public:
|
|
//! Interface destructor does nothing
|
|
virtual ~IInterface() { }
|
|
};
|
|
|
|
#endif
|