-
Notifications
You must be signed in to change notification settings - Fork 0
/
general.h
37 lines (33 loc) · 909 Bytes
/
general.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// -*- C++ -*-
//
// General header file.
//
// Copyright 1992-2021 Deven T. Corzine <[email protected]>
//
// SPDX-License-Identifier: MIT
//
// Check if previously included.
#ifndef _GENERAL_H
#define _GENERAL_H 1
// Class declarations.
class Block;
class Discussion;
class FD;
class FDTable;
class Line;
class Listen;
class OutputBuffer;
class Event;
class EventQueue;
class Sendlist;
class Session;
class Telnet;
class Timestamp;
class User;
void *operator new (size_t s); // Provide a basic new operator.
void *operator new[] (size_t s); // Provide a basic new[] operator.
void operator delete (void *p); // Provide a basic delete operator.
void operator delete[](void *p); // Provide a basic delete[] operator.
void operator delete (void *p, size_t s); // Provide a basic delete operator.
void operator delete[](void *p, size_t s); // Provide a basic delete[] operator.
#endif // general.h