~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to apps/drwho/PMC_All.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- C++ -*- */
2
 
// PMC_All.h,v 1.3 1998/10/20 02:34:38 levine Exp
3
 
 
4
 
// ============================================================================
5
 
//
6
 
// = LIBRARY
7
 
//    drwho
8
 
//
9
 
// = FILENAME
10
 
//    PMC_All.h
11
 
//
12
 
// = AUTHOR
13
 
//    Douglas C. Schmidt
14
 
//
15
 
// ============================================================================
16
 
 
17
 
#ifndef _PMC_ALL_H
18
 
#define _PMC_ALL_H
19
 
 
20
 
#include "PM_Client.h"
21
 
 
22
 
class PMC_All : public PM_Client
23
 
{
24
 
  // = TITLE
25
 
  //   Provides the client's lookup table abstraction for `all' users...
26
 
 
27
 
protected:
28
 
  virtual Protocol_Record *insert_protocol_info (Protocol_Record &protocol_record);
29
 
  virtual int encode (char *packet, int &total_bytes);
30
 
  virtual int decode (char *packet, int &total_bytes);
31
 
 
32
 
public:
33
 
  PMC_All (void);
34
 
  virtual void process (void);
35
 
};
36
 
 
37
 
#endif /* _PMC_ALL_H */