~freenx-team/nx-x11/nxcomp-upstream

« back to all changes in this revision

Viewing changes to FreeCache.h

  • Committer: Marcelo Boveto Shima
  • Date: 2009-03-28 22:24:56 UTC
  • Revision ID: mshima@ufserv-20090328222456-rdtaq3oedfyq890c
Import nxcomp 3.3.0-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************************/
 
2
/*                                                                        */
 
3
/* Copyright (c) 2001, 2007 NoMachine, http://www.nomachine.com/.         */
 
4
/*                                                                        */
 
5
/* NXCOMP, NX protocol compression and NX extensions to this software     */
 
6
/* are copyright of NoMachine. Redistribution and use of the present      */
 
7
/* software is allowed according to terms specified in the file LICENSE   */
 
8
/* which comes in the source distribution.                                */
 
9
/*                                                                        */
 
10
/* Check http://www.nomachine.com/licensing.html for applicability.       */
 
11
/*                                                                        */
 
12
/* NX and NoMachine are trademarks of NoMachine S.r.l.                    */
 
13
/*                                                                        */
 
14
/* All rights reserved.                                                   */
 
15
/*                                                                        */
 
16
/**************************************************************************/
 
17
 
 
18
#ifndef FreeCache_H
 
19
#define FreeCache_H
 
20
 
 
21
#include "IntCache.h"
 
22
 
 
23
class FreeCache : public IntCache
 
24
{
 
25
  public:
 
26
 
 
27
  FreeCache(unsigned int size)
 
28
 
 
29
    : IntCache(size)
 
30
  {
 
31
  }
 
32
};
 
33
 
 
34
#endif /* FreeCache_H */